import * as React from 'react'; import { Combobox as ComboboxPrimitive } from '@base-ui/react'; import { XIcon } from 'lucide-react'; import { cn } from '#utils'; import { Button } from '../Button/Button.tsx'; const ComboboxChips = ({ className, ...props }: ComboboxPrimitive.Chips.Props & React.ComponentPropsWithRef) => { return ( ); }; const ComboboxChip = ({ children, className, showRemove = true, ...props }: ComboboxPrimitive.Chip.Props & { showRemove?: boolean; }) => { return ( {children} {showRemove && ( } /> )} ); }; const ComboboxChipsInput = ({ className, ...props }: ComboboxPrimitive.Input.Props) => { return ( ); }; export { ComboboxChip, ComboboxChips, ComboboxChipsInput };