ListItemSecondaryAction API
Importação
import ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction';
// ou
import { ListItemSecondaryAction } from '@mui/material';Must be used as the last child of ListItem to function properly.
Nome do componente
The nameMuiListItemSecondaryAction can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente nativo também estão disponíveis.
| Nome | Tipo | Padrão | Descrição | 
|---|---|---|---|
| children | node | The content of the component, normally an  IconButtonor selection control. | |
| classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
| 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. | 
O
ref é encaminhado para o elemento raiz.CSS
| Nome da regra | Classe global | Descrição | 
|---|---|---|
| root | .MuiListItemSecondaryAction-root | Estilos aplicados ao elemento raiz. | 
| disableGutters | .MuiListItemSecondaryAction-disableGutters | Styles applied to o elemento raiz when the parent ListItemhasdisableGutters={true}. | 
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's styleOverridesproperty in a custom theme.