material-ui-cordova
Version:
React components that implement Google's Material Design.
24 lines (19 loc) • 460 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface FormLabelProps extends StandardProps<
React.LabelHTMLAttributes<HTMLLabelElement>,
FormLabelClassKey
> {
disabled?: boolean;
error?: boolean;
focused?: boolean;
required?: boolean;
}
export type FormLabelClassKey =
| 'root'
| 'focused'
| 'error'
| 'disabled'
;
declare const FormLabel: React.ComponentType<FormLabelProps>;
export default FormLabel;