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