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