UNPKG

focus-components-v3

Version:

Focus web components to build applications (based on Material Design)

12 lines (10 loc) 281 B
export interface InputCheckBoxProps { disabled?: boolean; label?: string; name?: string; onChange: () => void; rawInputValue?: boolean; } export default class InputCheckBox extends React.Component<InputCheckBoxProps, {}> { getValue(): boolean }