import * as React from "react" import * as SelectPrimitive from "@radix-ui/react-select" import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react" import { cn } from "@/lib/utils" function Select({ ...props }) { return ; } function SelectGroup({ ...props }) { return ; } function SelectValue({ ...props }) { return ; } function SelectTrigger({ className, size = "default", children, ...props }) { return ( {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 ( ); } function SelectScrollUpButton({ className, ...props }) { return ( ); } function SelectScrollDownButton({ className, ...props }) { return ( ); } export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, }