UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

25 lines (20 loc) 674 B
import * as React from 'react'; import { StandardProps } from '..'; export interface FormControlLabelProps extends StandardProps< React.LabelHTMLAttributes<HTMLLabelElement>, FormControlLabelClassKey, 'onChange' > { checked?: boolean | string; control: React.ReactElement<any>; disabled?: boolean; inputRef?: React.Ref<any>; label: React.ReactNode; name?: string; onChange?: (event: React.ChangeEvent<{}>, checked: boolean) => void; value?: string; } export type FormControlLabelClassKey = 'root' | 'disabled' | 'label'; declare const FormControlLabel: React.ComponentType<FormControlLabelProps>; export default FormControlLabel;