import * as SelectPrimitive from '@radix-ui/react-select'; import { cn } from '@/lib/utils'; import { createRoot } from '@wordpress/element'; function Select({ ...props }) { return ; } function SelectGroup({ ...props }) { return ; } function SelectValue({ ...props }) { return ; } function SelectTrigger({ className, children, ...props }) { return ( span]:line-clamp-1", className )} {...props} > {children} ); } function SelectContent({ className, children, position = "popper", ...props }) { return ( {children} ); } function SelectLabel({ className, ...props }) { return ( ); } function SelectItem({ className, children, ...props }) { return ( {children} ); } function SelectSeparator({ className, ...props }) { return ( ); } export { Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, };