/* Copyright 2026 Marimo. All rights reserved. */ import { Check, Minus } from "lucide-react"; import { Checkbox as CheckboxPrimitive } from "radix-ui"; import * as React from "react"; import { cn } from "@/utils/cn"; const Checkbox = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( {props.checked === "indeterminate" ? ( ) : ( )} )); Checkbox.displayName = CheckboxPrimitive.Root.displayName; export { Checkbox };