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