'use client'; import * as React from 'react'; import { Checkbox as CheckboxPrimitive } from 'radix-ui'; import { cn } from '@/lib/utils'; import { CheckIcon } from 'lucide-react'; function Checkbox({ className, ...props }: React.ComponentProps) { return ( ); } export { Checkbox };