@material-ui/core
Version:
React components that implement Google's Material Design.
25 lines (21 loc) • 678 B
TypeScript
import { StandardProps } from '..';
import { InputBaseProps, InputBaseClassKey } from '../InputBase';
export interface FilledInputProps extends StandardProps<InputBaseProps, FilledInputClassKey> {
/**
* If `true`, the input will not have an underline.
*/
disableUnderline?: boolean;
}
export type FilledInputClassKey = InputBaseClassKey | 'colorSecondary' | 'underline';
/**
*
* Demos:
*
* - [Text Fields](https://mui.com/components/text-fields/)
*
* API:
*
* - [FilledInput API](https://mui.com/api/filled-input/)
* - inherits [InputBase API](https://mui.com/api/input-base/)
*/
export default function FilledInput(props: FilledInputProps): JSX.Element;