We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2e3b7e commit 962ac16Copy full SHA for 962ac16
1 file changed
src/components/Searcher/Searcher.tsx
@@ -1,4 +1,3 @@
1
-import { SearchIcon } from '@/assets/Icons'
2
import { Autocomplete, AutocompleteItem } from '@heroui/react'
3
4
interface SearcherProps {
@@ -15,7 +14,6 @@ const SearchAddon = ({ searchTerm, setSearchTerm, valueName }: SearcherProps) =>
15
14
selectedKey={searchTerm}
16
onSelectionChange={(key) => setSearchTerm(key as string)}
17
defaultItems={valueName.map((title) => ({ key: title, title: title }))}
18
- startContent={<SearchIcon className="w-4 h-4" />}
19
size="md"
20
className="w-full font-bold text-default-900"
21
variant="underlined"
0 commit comments