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