Skip to content

ImageListItemBar API

API documentation for the React ImageListItemBar component. Learn about the available props and the CSS API.

Import

import ImageListItemBar from '@mui/material/ImageListItemBar';
// or
import { ImageListItemBar } from '@mui/material';
You can learn about the difference by reading this guide on minimizing bundle size.

Component name

The name MuiImageListItemBar can be used when providing default props or style overrides in the theme.

Props

Props of the native component are also available.

NameTypeDefaultDescription
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
Override or extend the styles applied to the component. See CSS API below for more details.
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.

The ref is forwarded to the root element.

CSS

Rule nameGlobal classDescription
root.MuiImageListItemBar-rootStyles applied to the root element.
positionBottom.MuiImageListItemBar-positionBottomStyles applied to the root element if position="bottom".
positionTop.MuiImageListItemBar-positionTopStyles applied to the root element if position="top".
positionBelow.MuiImageListItemBar-positionBelowStyles applied to the root element if position="below".
titleWrap.MuiImageListItemBar-titleWrapStyles applied to the title and subtitle container element.
titleWrapBelow.MuiImageListItemBar-titleWrapBelowStyles applied to the title and subtitle container element if position="below".
titleWrapActionPosLeft.MuiImageListItemBar-titleWrapActionPosLeftStyles applied to the container element if actionPosition="left".
titleWrapActionPosRight.MuiImageListItemBar-titleWrapActionPosRightStyles applied to the container element if actionPosition="right".
title.MuiImageListItemBar-titleStyles applied to the title container element.
subtitle.MuiImageListItemBar-subtitleStyles applied to the subtitle container element.
actionIcon.MuiImageListItemBar-actionIconStyles applied to the actionIcon if supplied.
actionIconActionPosLeft.MuiImageListItemBar-actionIconActionPosLeftStyles applied to the actionIcon if actionPosition="left".

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

Demos