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