Skip to main content

SectionHeader

Child of the Section component. Each Section should have one SectionHeader component.

Section title

Optional section subtitle

<SectionHeader
label="Section label"
title="Section title"
subtitle="Optional section subtitle"
actions={
<Button>Action</Button>
}
/>

Props

TitleComponent

Override the HTML tag of the section title.

You can use h1 to h6 and p

<SectionHeader
title="You can use h1 to h6 and p"
titleComponent="p"
/>