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