"use client" import * as React from "react" import * as CheckboxPrimitive from "@radix-ui/react-checkbox" import { motion } from "framer-motion" import { CheckIcon } from "lucide-react" import { cn } from "../../design-lib/utils" import Stack from "../molecules/stack" const Checkbox = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { indeterminate?: boolean } >(({ className, indeterminate, ...props }, ref) => { return ( {indeterminate && ( - )} ) }) Checkbox.displayName = CheckboxPrimitive.Root.displayName export { Checkbox }