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