/// export interface CheckboxProps { value?: string | number; label?: string | JSX.Element; checked?: boolean; extraCls?: string; defaultChecked?: boolean; disabled?: boolean; partialChecked?: boolean; onChange?: Function; tipsType?: string; fontSize?: 'normal' | 'middle'; textColor?: 'M1' | 'M2' | 'M3' | 'M4' | 'M5'; }