Skip to main content

CardHeader

Contains the card title. You can add an optional label or subtitle. The font sizes are automatically set by the Card size prop.

Card label

Card title

This is a card subtitle

<CardHeader
label="Card label"
title="Card title"
subtitle="This is a card subtitle"
/>

Props

Actions

Card header with actions

<CardHeader
title="Card title"
actions={
<>
<Button color="error">Cancel</Button>
<Button color="primary">Save</Button>
</>
}
/>