import * as SelectPrimitive from '@radix-ui/react-select' import { Check, ChevronDown } from 'lucide-react' import type * as React from 'react' import { cn } from '#shared/lib/utils' export const Select = SelectPrimitive.Root export const SelectValue = SelectPrimitive.Value export function SelectTrigger({ className, children, ...props }: React.ComponentProps) { return ( span]:truncate', className, )} {...props} > {children} ) } export function SelectContent({ className, children, ...props }: React.ComponentProps) { return ( {children} ) } export function SelectItem({ className, children, ...props }: React.ComponentProps) { return ( {children} ) }