ImageListItem API
Importação
import ImageListItem from '@mui/material/ImageListItem';
// ou
import { ImageListItem } from '@mui/material';
Nome do componente
The nameMuiImageListItem
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 | While you can pass any node as children, the main use case is for an img. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
cols | integer | 1 | Width of the item in number of grid columns. |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
rows | integer | 1 | Height of the item in number of grid rows. |
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 | .MuiImageListItem-root | Estilos aplicados ao elemento raiz. |
img | .MuiImageListItem-img | Estilos aplicados a an `img` element to ensure it covers the item. |
standard | .MuiImageListItem-standard | Estilos aplicados para o elemento raiz se variant="standard" . |
woven | .MuiImageListItem-woven | Estilos aplicados para o elemento raiz se variant="woven" . |
masonry | .MuiImageListItem-masonry | Estilos aplicados para o elemento raiz se variant="masonry" . |
quilted | .MuiImageListItem-quilted | Estilos aplicados para o elemento raiz se variant="quilted" . |
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
styleOverrides
property in a custom theme.