CardHeader

CardHeader

The API documentation of the CardHeader React component.

Props

Name Type Default Description
action node The action to display in the card header.
avatar node The Avatar for the Card Header.
classes object Override or extend the styles applied to the component. See CSS API below for more details.
component union: string |
 func |
 object
'div' The component used for the root node. Either a string to use a DOM element or a component.
disableTypography bool false If true, the children won't be wrapped by a Typography component. This can be useful to render an alternative Typography variant by wrapping the title text, and optional subheader text with the Typography component.
subheader node The content of the component.
subheaderTypographyProps object These props will be forwarded to the subheader (as long as disableTypography is not true).
title node The content of the Card Title.
titleTypographyProps object These props will be forwarded to the title (as long as disableTypography is not true).

Any other properties supplied will be spread to the root element (native element).

CSS API

You can override all the class names injected by Material-UI thanks to the classes property. This property accepts the following keys:

Name Description
root Styles applied to the root element.
avatar Styles applied to the avatar element.
action Styles applied to the action element.
content Styles applied to the content wrapper element.
title Styles applied to the title Typography element.
subheader Styles applied to the subheader Typography element.

Have a look at overriding with classes section and the implementation of the component for more detail.

If using the overrides key of the theme as documented here, you need to use the following style sheet name: MuiCardHeader.

Demos