import * as React from 'react' import {CheckIcon} from 'lucide-react' import {Checkbox as CheckboxPrimitive} from 'radix-ui' import {cn} from '../../lib/utils' function Checkbox({ className, ...props }: React.ComponentProps) { return ( ) } export {Checkbox}