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