import { Checkbox as CheckboxPrimitive } from "@base-ui/react/checkbox"; import { CheckIcon } from "lucide-react"; import { cn } from "@/lib/utils"; function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) { return ( ); } export { Checkbox };