import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; import { CheckIcon } from "@radix-ui/react-icons"; import React from "react"; import { cn } from "../../lib/utils"; interface CheckBoxProps extends React.ComponentPropsWithoutRef { checkboxClassname?: string; } const Checkbox = React.forwardRef< React.ElementRef, CheckBoxProps >(({ className, checkboxClassname, ...props }, ref) => ( )); Checkbox.displayName = CheckboxPrimitive.Root.displayName; export { Checkbox };