UNPKG

394 BTypeScriptView Raw
1/// <reference types="react" />
2export interface CheckboxProps {
3 value?: string | number;
4 label?: string | JSX.Element;
5 checked?: boolean;
6 extraCls?: string;
7 defaultChecked?: boolean;
8 disabled?: boolean;
9 partialChecked?: boolean;
10 onChange?: Function;
11 tipsType?: string;
12 fontSize?: 'normal' | 'middle';
13 textColor?: 'M1' | 'M2' | 'M3' | 'M4' | 'M5';
14}