"use client"; import * as React from "react"; import * as SelectPrimitive from "@radix-ui/react-select"; import { Check, ChevronDown } from "lucide-react"; import { cn } from "@/lib/utils"; export const Select = SelectPrimitive.Root; export const SelectGroup = SelectPrimitive.Group; export const SelectValue = SelectPrimitive.Value; export const SelectTrigger = React.forwardRef, React.ComponentPropsWithoutRef>(function SelectTrigger({ className, children, ...props }, ref) { return ( span]:truncate", className, )} {...props} > {children} ); }); export const SelectContent = React.forwardRef, React.ComponentPropsWithoutRef>(function SelectContent({ className, children, position = "popper", ...props }, ref) { return ( {children} ); }); export const SelectItem = React.forwardRef, React.ComponentPropsWithoutRef>(function SelectItem({ className, children, ...props }, ref) { return ( {children} ); }); export const SelectLabel = React.forwardRef, React.ComponentPropsWithoutRef>(function SelectLabel({ className, ...props }, ref) { return ; });