diff --git a/src/components/filter-sorter.tsx b/src/components/filter-sorter.tsx index bead680..a36a432 100644 --- a/src/components/filter-sorter.tsx +++ b/src/components/filter-sorter.tsx @@ -7,6 +7,7 @@ import { XMarkIcon } from '@heroicons/react/16/solid'; import { ArrowLongUpIcon } from '@heroicons/react/24/solid'; import { useDebounceCallback, useIsMounted } from 'usehooks-ts'; import { usePathname } from 'next/navigation'; +import { SearchIcon } from '@nextui-org/shared-icons'; type ValueType = { @@ -269,7 +270,7 @@ const FilterSorterComponent = Reset - setQuery('')} /> + } ref={searchRef} size="sm" label="Search" type="text" isClearable={true} value={query} onValueChange={setQuery} onClear={() => setQuery('')} />