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