import { type PropsOf, Slot, component$ } from '@builder.io/qwik'; import { Combobox as HeadlessCombobox } from '@qwik-ui/headless'; import { cn } from '@qwik-ui/utils'; import { LuChevronDown } from '@qwikest/icons/lucide'; const Root = (props: PropsOf) => { return ( {props.children} ); }; const Label = component$>(({ ...props }) => { return ( ); }); const ItemLabel = component$>( ({ ...props }) => { return ( ); }, ); const ItemIndicator = component$>( ({ ...props }) => { return ( ); }, ); const Control = component$>((props) => { return ( ); }); const Input = component$>((props) => { return ( ); }); const Trigger = component$>(({ ...props }) => { return ( ); }); const Popover = component$>((props) => { return ( ); }); const Item = component$>(({ ...props }) => { return ( ); }); const Inline = component$>(({ ...props }) => { return ( ); }); const Empty = component$>(({ ...props }) => { return ( ); }); export const Combobox = { Root, Label, Control, Input, Trigger, Popover, Item, ItemLabel, ItemIndicator, Inline, Empty, };