import React, {FC} from 'react'; import Check from 'herein-icon/check'; import Minus from 'herein-icon/minus'; import {ICheckboxIcon} from './checkbox-icon.type'; export const CheckboxIconComponent: FC = ({ checked, indeterminate, }) => { if (checked && indeterminate) return ; if (checked) return ; return <>; };