import { Combobox as ComboboxPrimitive } from '@base-ui/react'; import { ChevronDownIcon } from 'lucide-react'; import { cn } from '#utils'; const ComboboxTrigger = ({ children, className, render, ...props }: ComboboxPrimitive.Trigger.Props) => { return ( {children} {/* We move the icon here so it's always included, unless you prefer passing it as children manually. */} {!render && } ); }; export { ComboboxTrigger };