import React, { type PropsWithChildren } from 'react' import { Checkbox as NextUiCheckbox } from '@/components/heroui/SelectionControls' import { cn } from '@/lib/cn' interface CheckboxProps { className?: string value?: string isSelected?: boolean onValueChange?: (isSelected: boolean) => void } const Checkbox = ({ children, className, value, isSelected, onValueChange }: PropsWithChildren) => { return ( {children} ) } export default Checkbox