import { forwardRef } from 'react'; import * as SelectPrimitive from '@radix-ui/react-select'; import { CheckIcon } from 'lucide-react'; import { cn } from '#utils'; export const SelectItem = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function SelectItem({ children, className, ...props }, ref) { return ( {children} ); });