'use client' import * as CheckboxPrimitive from '@radix-ui/react-checkbox' import { forwardRef } from 'react' import { Check } from 'lucide-react' import { cn } from '../lib/utils' const Checkbox = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) Checkbox.displayName = CheckboxPrimitive.Root.displayName export { Checkbox }