Skip to content

InputBase API

API documentation for the React InputBase component. Learn about the available props, and the CSS API.

Import

import InputBase from '@material-ui/core/InputBase';
// or
import { InputBase } from '@material-ui/core';
You can learn about the difference by reading this guide on minimizing bundle size.

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.

Component name

The name MuiInputBase can be used when providing default props or style overrides in the theme.

Props

NameTypeDefaultDescription
autoCompletestringThis 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.
autoFocusboolfalseIf true, the input element is focused during the first mount.
classesobjectOverride or extend the styles applied to the component. See CSS API below for more details.
color'primary'
| 'secondary'
The color of the component. It supports those theme colors that make sense for this component. The prop defaults to the value ('primary') inherited from the parent FormControl component.
defaultValueanyThe default input element value. Use when the component is not controlled.
disabledboolfalseIf true, the input element is disabled. The prop defaults to the value (false) inherited from the parent FormControl component.
endAdornmentnodeEnd InputAdornment for this component.
errorboolfalseIf true, the input will indicate an error. The prop defaults to the value (false) inherited from the parent FormControl component.
fullWidthboolfalseIf true, the input will take up the full width of its container.
idstringThe id of the input element.
inputComponentelement type'input'The component used for the input element. Either a string to use a HTML element or a component.
⚠️ Needs to be able to hold a ref.
inputPropsobject{}Attributes applied to the input element.
inputRefrefPass a ref to the input element.
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.
maxRowsnumber
| string
Maximum number of rows to display when multiline option is set to true.
minRowsnumber
| string
Minimum number of rows to display when multiline option is set to true.
multilineboolfalseIf true, a textarea element is rendered.
namestringName attribute of the input element.
onBlurfuncCallback fired when the input is blurred.
Notice that the first argument (event) might be undefined.
onChangefuncCallback fired when the value is changed.

Signature:
function(event: object) => void
event: The event source of the callback. You can pull out the new value by accessing event.target.value (string).
placeholderstringThe short hint displayed in the input before the user enters a value.
readOnlyboolfalseIt prevents the user from changing the value of the field (not from interacting with the field).
requiredboolfalseIf true, the input element is required. The prop defaults to the value (false) inherited from the parent FormControl component.
rowsnumber
| string
Number of rows to display when multiline option is set to true.
size'medium'
| 'small'
The size of the text field.
startAdornmentnodeStart InputAdornment for this component.
typestring'text'Type of the input element. It should be a valid HTML5 input type.
valueanyThe value of the input element, required for a controlled component.

The ref is forwarded to the root element.
Any other props supplied will be provided to the root element (native element).

CSS

Rule nameGlobal classDescription
root.MuiInputBase-rootStyles applied to the root element.
formControl.MuiInputBase-formControlStyles applied to the root element if the component is a descendant of `FormControl`.
focused.Mui-focusedStyles applied to the root element if the component is focused.
disabled.Mui-disabledStyles applied to the root element if disabled={true}.
adornedStart.MuiInputBase-adornedStartStyles applied to the root element if startAdornment is provided.
adornedEnd.MuiInputBase-adornedEndStyles applied to the root element if endAdornment is provided.
error.Mui-errorPseudo-class applied to the root element if error={true}.
sizeSmall.MuiInputBase-sizeSmallStyles applied to the `input` element if size="small".
multiline.MuiInputBase-multilineStyles applied to the root element if multiline={true}.
colorSecondary.MuiInputBase-colorSecondaryStyles applied to the root element if the color is secondary.
fullWidth.MuiInputBase-fullWidthStyles applied to the root element if fullWidth={true}.
hiddenLabel.MuiInputBase-hiddenLabelStyles applied to the root element if hiddenLabel={true}.
input.MuiInputBase-inputStyles applied to the `input` element.
inputSizeSmall.MuiInputBase-inputSizeSmallStyles applied to the `input` element if size="small".
inputMultiline.MuiInputBase-inputMultilineStyles applied to the `input` element if multiline={true}.
inputTypeSearch.MuiInputBase-inputTypeSearchStyles applied to the `input` element if type="search".
inputAdornedStart.MuiInputBase-inputAdornedStartStyles applied to the `input` element if startAdornment is provided.
inputAdornedEnd.MuiInputBase-inputAdornedEndStyles applied to the `input` element if endAdornment is provided.
inputHiddenLabel.MuiInputBase-inputHiddenLabelStyles applied to the `input` element if hiddenLabel={true}.

You can override the style of the component using one of these customization options: If that isn't sufficient, you can check the implementation of the component for more detail.

Demos