Pular para o conteúdo

ImageListItemBar API

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

Importação

import ImageListItemBar from '@mui/material/ImageListItemBar';
// ou
import { ImageListItemBar } 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 MuiImageListItemBar 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
actionIconnode
An IconButton element to be used as secondary action target (primary action target is the item itself).
actionPosition'left'
| 'right'
'right'
Position of secondary action IconButton.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
position'below'
| 'bottom'
| 'top'
'bottom'
Position of the title bar.
subtitlenode
String or element serving as subtitle (support text).
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
titlenode
Title to be displayed.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiImageListItemBar-rootEstilos aplicados ao elemento raiz.
positionBottom.MuiImageListItemBar-positionBottomEstilos aplicados para o elemento raiz se position="bottom".
positionTop.MuiImageListItemBar-positionTopEstilos aplicados para o elemento raiz se position="top".
positionBelow.MuiImageListItemBar-positionBelowEstilos aplicados para o elemento raiz se position="below".
titleWrap.MuiImageListItemBar-titleWrapEstilos aplicados a the title and subtitle container element.
titleWrapBelow.MuiImageListItemBar-titleWrapBelowEstilos aplicados para the title and subtitle container element se position="below".
titleWrapActionPosLeft.MuiImageListItemBar-titleWrapActionPosLeftEstilos aplicados para the container element se actionPosition="left".
titleWrapActionPosRight.MuiImageListItemBar-titleWrapActionPosRightEstilos aplicados para the container element se actionPosition="right".
title.MuiImageListItemBar-titleEstilos aplicados a the title container element.
subtitle.MuiImageListItemBar-subtitleEstilos aplicados a the subtitle container element.
actionIcon.MuiImageListItemBar-actionIconEstilos aplicados para the actionIcon se supplied.
actionIconActionPosLeft.MuiImageListItemBar-actionIconActionPosLeftEstilos aplicados para the actionIcon se actionPosition="left".

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

Demonstrações