import { IconSearch } from '@tabler/icons-react' import { cn } from '@/lib/utils' import { useSearch } from '@/context/search-context' import { Button } from './ui/button' interface Props { className?: string type?: React.HTMLInputTypeAttribute placeholder?: string } export function Search({ className = '', placeholder = 'Search' }: Props) { const { setOpen } = useSearch() return ( ) }