'use client'; import type * as React from 'react'; import { CheckIcon } from 'lucide-react'; import { Checkbox as CheckboxPrimitive } from 'radix-ui'; import { cn } from '@gib/ui'; function Checkbox({ className, ...props }: React.ComponentProps) { return ( ); } export { Checkbox };