Pular para o conteúdo

InputAdornment API

Documentação da API para o componente React InputAdornment . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import InputAdornment from '@mui/material/InputAdornment';
// ou
import { InputAdornment } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

Nome do componente

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

Propriedades

Props of the nativo component are also available.

NomeTipoPadrãoDescrição
position*'end'
| 'start'
The position this adornment should appear relative to the Input.
childrennode
The content of the component, normally an IconButton or string.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
disablePointerEventsboolfalse
Disable pointer events on the root. This allows for the content of the adornment to focus the input on click.
disableTypographyboolfalse
If children is a string then disable wrapping in a Typography component.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
variant'filled'
| 'outlined'
| 'standard'
The variant to use. Note: If you are using the TextField component or the FormControl component you do not have to set this manually.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiInputAdornment-rootEstilos aplicados ao elemento raiz.
filled.MuiInputAdornment-filledEstilos aplicados para o elemento raiz se variant="filled".
outlined.MuiInputAdornment-outlinedEstilos aplicados para o elemento raiz se variant="outlined".
standard.MuiInputAdornment-standardEstilos aplicados para o elemento raiz se variant="standard".
positionStart.MuiInputAdornment-positionStartEstilos aplicados para o elemento raiz se position="start".
positionEnd.MuiInputAdornment-positionEndEstilos aplicados para o elemento raiz se position="end".
disablePointerEvents.MuiInputAdornment-disablePointerEventsEstilos aplicados para o elemento raiz se disablePointerEvents={true}.
hiddenLabel.MuiInputAdornment-hiddenLabelStyles applied if the adornment is used inside .
sizeSmall.MuiInputAdornment-sizeSmallStyles applied if the adornment is used inside .

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações