Text field
Text fields let users enter and edit text.
Introduction
Text fields allow users to enter text into a UI. They typically appear in forms and dialogs.
<TextField />
Playground
Component
After installation, you can start building with this component using the following basic elements:
import TextField from '@mui/joy/TextField';
export default function MyApp() {
return <TextField placeholder="Search anything…" />;
}
Variants
The text field component supports the four global variants: solid (default), soft, outlined, and plain.
Form props
Standard form attributes are supported e.g. required
, disabled
, type
, etc. as well as a helperText
which is used to give context about a field's input, such as how the input will be used.
This is a helper text
Validation
To toggle the error state, use the error
prop. And, to provide feedback about the error to the user, use the helperText
prop.
You got this wrong. Try again!
Input decorators
Use the startDecorator
and/or endDecorator
props to add supporting icons or elements to the text field.