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