import * as React from "react"; import { ChevronDown, Check } from "lucide-react"; import * as Radix from "radix-ui"; import { cn } from "@/lib/utils"; const Select = Radix.Select.Root; const SelectTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )); SelectTrigger.displayName = "SelectTrigger"; const SelectValue = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); SelectValue.displayName = "SelectValue"; const SelectContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, position = "popper", ...props }, ref) => ( {children} )); SelectContent.displayName = "SelectContent"; const SelectItem = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )); SelectItem.displayName = "SelectItem"; export { Select, SelectTrigger, SelectValue, SelectContent, SelectItem };