"use client"; import { Checkbox as CheckboxPrimitive } from "@base-ui/react/checkbox"; import { cn } from "./cn"; export interface CheckboxProps extends Omit { className?: string; } function Checkbox({ className, children, ...props }: CheckboxProps) { return ( {children ?? ( ( {state.indeterminate ? : } )} /> )} ); } function CheckIcon() { return ( ); } function MinusIcon() { return ( ); } export { Checkbox };