Skip to content

Commit 962ac16

Browse files
committed
Remove unused SearchIcon import from Searcher component
1 parent d2e3b7e commit 962ac16

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/components/Searcher/Searcher.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { SearchIcon } from '@/assets/Icons'
21
import { Autocomplete, AutocompleteItem } from '@heroui/react'
32

43
interface SearcherProps {
@@ -15,7 +14,6 @@ const SearchAddon = ({ searchTerm, setSearchTerm, valueName }: SearcherProps) =>
1514
selectedKey={searchTerm}
1615
onSelectionChange={(key) => setSearchTerm(key as string)}
1716
defaultItems={valueName.map((title) => ({ key: title, title: title }))}
18-
startContent={<SearchIcon className="w-4 h-4" />}
1917
size="md"
2018
className="w-full font-bold text-default-900"
2119
variant="underlined"

0 commit comments

Comments
 (0)