Skip to main content

What are you looking for?

Try searching for…

Components

Heading

Heading is used to structure content and create hierarchy on a page.

HTML

Press Enter to start editing
Unable to parse html
const PreviewEn = () => {
  return <Heading>This is a heading</Heading>;
};

render(<PreviewEn />)

Usage

Use the class name ds-heading to style an HTML <h1>-<h6> element.

Example

Sizes

React

level
Description

Heading level. This will translate into any h1-6 level unless `asChild` is `true`

Type
1 | 2 | 3 | 4 | 5 | 6
Default
2
asChild
Description

Change the default rendered element for the one passed as a child, merging their props and behavior.

Type
boolean
Default
false
NameTypeDefaultDescription
level1 | 2 | 3 | 4 | 5 | 62

Heading level. This will translate into any h1-6 level unless `asChild` is `true`

asChildbooleanfalse

Change the default rendered element for the one passed as a child, merging their props and behavior.

Edit this page on github.com (opens in a new tab)