@material-ui/core
Version:
React components that implement Google's Material Design.
73 lines (68 loc) • 1.84 kB
TypeScript
import * as React from 'react';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
export interface FormHelperTextTypeMap<P = {}, D extends React.ElementType = 'p'> {
props: P & {
/**
* The content of the component.
*
* If `' '` is provided, the component reserves one line height for displaying a future message.
*/
children?: React.ReactNode;
/**
* If `true`, the helper text should be displayed in a disabled state.
*/
disabled?: boolean;
/**
* If `true`, helper text should be displayed in an error state.
*/
error?: boolean;
/**
* If `true`, the helper text should use filled classes key.
*/
filled?: boolean;
/**
* If `true`, the helper text should use focused classes key.
*/
focused?: boolean;
/**
* If `dense`, will adjust vertical spacing. This is normally obtained via context from
* FormControl.
*/
margin?: 'dense';
/**
* If `true`, the helper text should use required classes key.
*/
required?: boolean;
/**
* The variant to use.
*/
variant?: 'standard' | 'outlined' | 'filled';
};
defaultComponent: D;
classKey: FormHelperTextClassKey;
}
/**
*
* Demos:
*
* - [Text Fields](https://mui.com/components/text-fields/)
*
* API:
*
* - [FormHelperText API](https://mui.com/api/form-helper-text/)
*/
declare const FormHelperText: OverridableComponent<FormHelperTextTypeMap>;
export type FormHelperTextClassKey =
| 'root'
| 'error'
| 'disabled'
| 'marginDense'
| 'focused'
| 'filled'
| 'contained'
| 'required';
export type FormHelperTextProps<
D extends React.ElementType = FormHelperTextTypeMap['defaultComponent'],
P = {}
> = OverrideProps<FormHelperTextTypeMap<P, D>, D>;
export default FormHelperText;