'use client'; import { cn } from '#lib/utils'; import { Checkbox as CheckboxPrimitive } from '@base-ui/react/checkbox'; import { CheckIcon } from 'lucide-react'; function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) { return ( ); } export { Checkbox };