TextField API
API reference docs for the React TextField component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import TextField from '@mui/material/TextField';
// or
import { TextField } from '@mui/material';
Learn about the difference by reading this guide on minimizing bundle size.
The TextField
is a convenience wrapper for the most common cases (80%).
It cannot be all things to all people, otherwise the API would grow out of control.
Advanced Configuration
It's important to understand that the text field is a simple abstraction on top of the following components:
If you wish to alter the props applied to the input
element, you can do so as follows:
const inputProps = {
step: 300,
};
return <TextField id="time" type="time" inputProps={inputProps} />;
For advanced cases, please look at the source of TextField by clicking on the "Edit this page" button above. Consider either:
- using the upper case props for passing values directly to the components
- using the underlying components directly as shown in the demos
Props of the FormControl component are also available.
Name | Type | Default | Description |
---|---|---|---|
autoComplete | string | - | This prop helps users to fill forms faster, especially on mobile devices. The name can be confusing, as it's more like an autofill. You can learn more about it following the specification. |
autoFocus | bool | false | If |
classes | object | - | Override or extend the styles applied to the component. See CSS classes API below for more details. |
color | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | string | 'primary' | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. |
defaultValue | any | - | The default value. Use when the component is not controlled. |
disabled | bool | false | If |
error | bool | false | If |
FormHelperTextProps | object | - | Props applied to the |
fullWidth | bool | false | If |
helperText | node | - | The helper text content. |
id | string | - | The id of the |
InputLabelProps | object | - | Props applied to the |
inputProps | object | - | Attributes applied to the |
InputProps | object | - | Props applied to the Input element. It will be a |
inputRef | ref | - | Pass a ref to the |
label | node | - | The label content. |
margin | 'dense' | 'none' | 'normal' | 'none' | If |
maxRows | number | string | - | Maximum number of rows to display when multiline option is set to true. |
minRows | number | string | - | Minimum number of rows to display when multiline option is set to true. |
multiline | bool | false | If |
name | string | - | Name attribute of the |
onChange | func | - | Callback fired when the value is changed. Signature: function(event: object) => void
|
placeholder | string | - | The short hint displayed in the |
required | bool | false | If |
rows | number | string | - | Number of rows to display when multiline option is set to true. |
select | bool | false | Render a |
SelectProps | object | - | Props applied to the |
size | 'medium' | 'small' | string | - | The size of the component. |
sx | Array<func | object | bool> | func | object | - | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. |
type | string | - | Type of the |
value | any | - | The value of the |
variant | 'filled' | 'outlined' | 'standard' | 'outlined' | The variant to use. |
ref
is forwarded to the root element.Inheritance
While not explicitly documented above, the props of the FormControl component are also available in TextField. You can take advantage of this to target nested components.
Theme default props
You can use MuiTextField
to change the default props of this component with the theme.
These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
Class name | Rule name | Description |
---|---|---|
.MuiTextField-root | root | Styles applied to the root element. |
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.