'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'; const Checkbox = ({ className, ...props }: React.ComponentProps) => ( ); export { Checkbox };