UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

29 lines (24 loc) 622 B
import * as React from 'react'; import { StandardProps } from '..'; import { FormLabelProps, FormLabelClassKey } from '../Form/FormLabel'; export interface InputLabelProps extends StandardProps< FormLabelProps, InputLabelClassKey > { disableAnimation?: boolean; disabled?: boolean; error?: boolean; FormControlClasses?: Object; focused?: boolean; required?: boolean; shrink?: boolean; } export type InputLabelClassKey = | FormLabelClassKey | 'formControl' | 'labelDense' | 'shrink' | 'animated' ; declare const InputLabel: React.ComponentType<InputLabelProps>; export default InputLabel;