InputBase API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import InputBase from '@mui/material/InputBase';
// or
import { InputBase } from '@mui/material';InputBase contains as few styles as possible.
It aims to be a simple building block for creating an input.
It contains a load of style reset and some state logic.
Props
Props of the native 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 | If  true, theinputelement is focused during the first mount. | |
| classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
| color | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | string | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. The prop defaults to the value ( 'primary') inherited from the parent FormControl component. | |
| components | { Input?: elementType, Root?: elementType } | {} | The components used for each slot inside. This prop is an alias for the slotsprop. It's recommended to use theslotsprop instead. | 
| componentsProps | { input?: object, root?: object } | {} | The extra props for the slot components. You can override the existing props or add new ones. This prop is an alias for the slotPropsprop. It's recommended to use theslotPropsprop instead, ascomponentsPropswill be deprecated in the future. | 
| defaultValue | any | The default value. Use when the component is not controlled. | |
| disabled | bool | If  true, the component is disabled. The prop defaults to the value (false) inherited from the parent FormControl component. | |
| disableInjectingGlobalStyles | bool | false | If  true, GlobalStyles for the auto-fill keyframes will not be injected/removed on mount/unmount. Make sure to inject them at the top of your application. This option is intended to help with boosting the initial rendering performance if you are loading a big amount of Input components at once. | 
| endAdornment | node | End  InputAdornmentfor this component. | |
| error | bool | If  true, theinputwill indicate an error. The prop defaults to the value (false) inherited from the parent FormControl component. | |
| fullWidth | bool | false | If  true, theinputwill take up the full width of its container. | 
| id | string | The id of the  inputelement. | |
| inputComponent | element type | 'input' | The component used for the  inputelement. Either a string to use a HTML element or a component.⚠️ Needs to be able to hold a ref. | 
| inputProps | object | {} | Attributes applied to the  inputelement. | 
| inputRef | ref | Pass a ref to the  inputelement. | |
| margin | 'dense' | 'none' | If  dense, will adjust vertical spacing. This is normally obtained via context from FormControl. The prop defaults to the value ('none') inherited from the parent FormControl component. | |
| 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  true, a TextareaAutosize element is rendered. | 
| name | string | Name attribute of the  inputelement. | |
| onBlur | func | Callback fired when the  inputis blurred.Notice that the first argument (event) might be undefined. | |
| onChange | func | Callback fired when the value is changed. Signature: function(event: React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>) => voidevent: The event source of the callback. You can pull out the new value by accessing event.target.value(string). | |
| onInvalid | func | Callback fired when the  inputdoesn't satisfy its constraints. | |
| placeholder | string | The short hint displayed in the  inputbefore the user enters a value. | |
| readOnly | bool | It prevents the user from changing the value of the field (not from interacting with the field). | |
| required | bool | If  true, theinputelement is required. The prop defaults to the value (false) inherited from the parent FormControl component. | |
| rows | number | string | Number of rows to display when multiline option is set to true. | |
| size | 'medium' | 'small' | string | The size of the component. | |
| slotProps | { input?: object, root?: object } | {} | The extra props for the slot components. You can override the existing props or add new ones. This prop is an alias for the componentsPropsprop, which will be deprecated in the future. | 
| slots | { input?: elementType, root?: elementType } | {} | The components used for each slot inside. This prop is an alias for the componentsprop, which will be deprecated in the future. | 
| startAdornment | node | Start  InputAdornmentfor this 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 | 'text' | Type of the  inputelement. It should be a valid HTML5 input type. | 
| value | any | The value of the  inputelement, required for a controlled component. | 
The
ref is forwarded to the root element.Theme default props
You can useMuiInputBase to change the default props of this component with the theme.CSS
The following class names are useful for styling with CSS (the state classes are marked). 
 To learn more, visit the component customization page.
| Rule name | Global class | Description | 
|---|---|---|
| root | .MuiInputBase-root | Styles applied to the root element. | 
| formControl | .MuiInputBase-formControl | Styles applied to the root element if the component is a descendant of FormControl. | 
| focused STATE | .Mui-focused | Styles applied to the root element if the component is focused. | 
| disabled STATE | .Mui-disabled | Styles applied to the root element if disabled={true}. | 
| adornedStart | .MuiInputBase-adornedStart | Styles applied to the root element if startAdornmentis provided. | 
| adornedEnd | .MuiInputBase-adornedEnd | Styles applied to the root element if endAdornmentis provided. | 
| error STATE | .Mui-error | State class applied to the root element if error={true}. | 
| sizeSmall | .MuiInputBase-sizeSmall | Styles applied to the input element if size="small". | 
| multiline | .MuiInputBase-multiline | Styles applied to the root element if multiline={true}. | 
| colorSecondary | .MuiInputBase-colorSecondary | Styles applied to the root element if the color is secondary. | 
| fullWidth | .MuiInputBase-fullWidth | Styles applied to the root element if fullWidth={true}. | 
| hiddenLabel | .MuiInputBase-hiddenLabel | Styles applied to the root element if hiddenLabel={true}. | 
| readOnly STATE | .Mui-readOnly | State class applied to the root element if readOnly={true}. | 
| input | .MuiInputBase-input | Styles applied to the input element. | 
| inputSizeSmall | .MuiInputBase-inputSizeSmall | Styles applied to the input element if size="small". | 
| inputMultiline | .MuiInputBase-inputMultiline | Styles applied to the input element if multiline={true}. | 
| inputTypeSearch | .MuiInputBase-inputTypeSearch | Styles applied to the input element if type="search". | 
| inputAdornedStart | .MuiInputBase-inputAdornedStart | Styles applied to the input element if startAdornmentis provided. | 
| inputAdornedEnd | .MuiInputBase-inputAdornedEnd | Styles applied to the input element if endAdornmentis provided. | 
| inputHiddenLabel | .MuiInputBase-inputHiddenLabel | Styles applied to the input element if hiddenLabel={true}. | 
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 styleOverridesproperty in a custom theme.