Pular para o conteúdo

ListItem API

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

Importação

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

Uses an additional container component if ListItemSecondaryAction is the last child.

Nome do componente

The name MuiListItem 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
alignItems'center'
| 'flex-start'
'center'
Defines the align-items style property.
autoFocusboolfalse
If true, the list item is focused during the first mount. Focus will also be triggered if the value changes from false to true.
buttonboolfalse
If true, the list item is a button (using ButtonBase). Props intended for ButtonBase can then be applied to ListItem.
childrennode
The content of the component if a ListItemSecondaryAction is used it must be the last child.
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.
components{ Root?: elementType }{}
The components used for each slot inside the InputBase. Either a string to use a HTML element or a component.
componentsPropsobject{}
The props used for each slot inside the Input.
ContainerComponentelement type'li'
The container component used when a ListItemSecondaryAction is the last child.
⚠️ Needs to be able to hold a ref.
ContainerPropsobject{}
Props applied to the container component if used.
denseboolfalse
If true, compact vertical padding designed for keyboard and mouse input is used. The prop defaults to the value inherited from the parent List component.
disabledboolfalse
Se true, o componente está desabilitado.
disableGuttersboolfalse
If true, the left and right padding is removed.
disablePaddingboolfalse
If true, all padding is removed.
dividerboolfalse
If true, a 1px light border is added to the bottom of the list item.
secondaryActionnode
The element to display at the end of ListItem.
selectedboolfalse
Use to apply selected styling.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiListItem-rootStyles applied to the (normally root) `component` element. May be wrapped by a `container`.
container.MuiListItem-containerEstilos aplicados para the container element se children includes ListItemSecondaryAction.
focusVisible.Mui-focusVisiblePseudo-class aplicada a the `component`'s `focusVisibleClassName` prop se button={true}.
dense.MuiListItem-denseEstilos aplicados para the component element se dense.
alignItemsFlexStart.MuiListItem-alignItemsFlexStartEstilos aplicados para the component element se alignItems="flex-start".
disabled.Mui-disabledPseudo-class aplicada a the inner `component` element se disabled={true}.
divider.MuiListItem-dividerEstilos aplicados para the inner `component` element se divider={true}.
gutters.MuiListItem-guttersEstilos aplicados em the inner `component` element a menos que disableGutters={true}.
padding.MuiListItem-paddingEstilos aplicados em o elemento raiz a menos que disablePadding={true}.
button.MuiListItem-buttonEstilos aplicados para the inner `component` element se button={true}.
secondaryAction.MuiListItem-secondaryActionEstilos aplicados para the component element se children includes ListItemSecondaryAction.
selected.Mui-selectedPseudo-class aplicada a o elemento raiz se selected={true}.

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

Demonstrações