import { Combobox as ComboboxPrimitive } from '@base-ui/react'; import { CheckIcon } from 'lucide-react'; import { cn } from '#utils'; const ComboboxItem = ({ children, className, ...props }: ComboboxPrimitive.Item.Props) => { return ( {children} } /> ); }; export { ComboboxItem };