Heading
Headings are used for rendering headlines.
Heading
composes Box
so you can use all the style props and add responsive
styles as well. It renders an <h2>
tag by default.
Import#
import { Heading } from "@chakra-ui/react"
Usage#
I'm a Heading
Changing font size#
To increase the size of the heading, you can use the fontSize
or size
props.
If you use the size
prop, the font size of the heading will automatically
decrease in size for smaller screens.
(4xl) In love with React & Next
(3xl) In love with React & Next
(2xl) In love with React & Next
(xl) In love with React & Next
(lg) In love with React & Next
(md) In love with React & Next
(sm) In love with React & Next
(xs) In love with React & Next
Truncate heading#
Pass the isTruncated
prop to render an ellipsis when the heading exceeds the
width of the viewport or maxWidth
prop.
Basic text writing, including headings, body text, lists, and more.
Override style#
You can override the size of the Heading component by passing the fontSize
prop. No need to write css
or styled()
.
I'm overriding this heading
Composition#
Modern online and offline payments for Africa
Paystack helps businesses in Africa get paid by anyone, anywhere in the world
Props#
The Heading
composes the Box component, so you can pass
all Box
props.
Name | Type | Description | Default |
---|---|---|---|
colorScheme | "blue" | "cyan" | "gray" | "green" | "orange" | "pink" | "purple" | "red" | "teal" | "yellow" | "whiteAlpha" | "blackAlpha" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram" | Color Schemes for Heading are not implemented in the default theme. You can extend the theme to implement them. | - |
orientation | "horizontal" | "vertical" | - | |
size | "sm" | "md" | "lg" | "xl" | "2xl" | "xs" | "3xl" | "4xl" | "xl" | |
styleConfig | Record<string, any> | - | |
variant | string | Variants for Heading are not implemented in the default theme. You can extend the theme to implement them. | - |