"use client"; import * as React from "react"; import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; import { CheckIcon } from "@radix-ui/react-icons"; import { cn } from "@/lib/utils"; const Checkbox = ({ ref, className, ...props }: React.ComponentPropsWithoutRef & { ref: React.RefObject>; }) => ( ); Checkbox.displayName = CheckboxPrimitive.Root.displayName; export { Checkbox };