0 Tk

image-list

Import

import ImageList from '@mui/material/ImageList';
// or
import { ImageList } from '@mui/material';

Learn about the difference by reading this guide on minimizing bundle size.

Props of the native component are also available.

Name Type Default Description
children* node - The content of the component, normally ImageListItems.
classes object - Override or extend the styles applied to the component. See CSS classes API below for more details.
cols integer 2 Number of columns.
component elementType - The component used for the root node. Either a string to use a HTML element or a component.
gap number 4 The gap between items in px.
rowHeight ‘auto’ | number ‘auto’ The height of one row in px.
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.
variant ‘masonry’ | ‘quilted’ | ‘standard’ | ‘woven’ | string ‘standard’ The variant to use.

The ref is forwarded to the root element.

Theme default props

You can use MuiImageList to change the default props of this component with the theme.

These class names are useful for styling with CSS. They are applied to the component’s slots when specific states are triggered.

Class name Rule name Description
.MuiImageList-masonry masonry Styles applied to the root element if variant="masonry".
.MuiImageList-quilted quilted Styles applied to the root element if variant="quilted".
.MuiImageList-root root Styles applied to the root element.
.MuiImageList-standard standard Styles applied to the root element if variant="standard".
.MuiImageList-woven woven Styles applied to the root element if variant="woven".

You can override the style of the component using one of these customization options:

Source code

If you did not find the information in this page, consider having a look at the implementation of the component for more detail.