import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import { Check } from 'lucide-react'; import type { ComponentProps } from 'react'; import { cn } from '@/lib/utils'; function Checkbox({ className, ref, ...props }: ComponentProps) { return ( ); } export { Checkbox };