import * as React from "react" import { CheckIcon } from "lucide-react" import { Checkbox as CheckboxPrimitive } from "radix-ui" import { cn } from "@/lib/utils" function Checkbox({ className, size = "md", ...props }: React.ComponentProps & { size?: "sm" | "md" }) { return ( ) } export { Checkbox }