import { Checkbox, CheckboxProps } from '@chakra-ui/react'; import type { ReactNode } from 'react'; type IAICheckboxProps = CheckboxProps & { label: string | ReactNode; styleClass?: string; }; const IAICheckbox = (props: IAICheckboxProps) => { const { label, styleClass, ...rest } = props; return ( {label} ); }; export default IAICheckbox;