Common UI kit components
Confluence UI kit components
Jira UI kit components
Jira Service Management UI kit components

Rate this page:

Heading

A piece of text at the top of a page or section.

Screenshot of what the rendered heading should look like

Import statement

1
2
import ForgeUI, { Heading } from '@forge/ui';

Props

NameTypeRequiredDescription
childrenstringYesThe text of the heading.
size'small' | 'medium' | 'large'The size of the heading. Defaults to medium.

Example

1
2
<Heading size="large">Title</Heading>
<Text>
    Paragraph text goes here.
</Text>

Rate this page: