interface InputSimpleCheckBoxProps {
    checked?: boolean;
    children?: any;
    label?: string;
    onChecked?: (isChecked: boolean) => void;
    style?: string;
}

Properties

checked?: boolean
children?: any
label?: string
onChecked?: (isChecked: boolean) => void
style?: string