Heading component gives you the ability to create headings for your page with different sizes and semantics from h1 to h6.
API Reference
Themed
This is an illustration of a Themed Heading component with default configuration.
<Heading>I am a Heading</Heading>
API Reference
Import
To use this component in your project, include the following import statement in your file.
import{Heading}from"@darden/design-system"
Anatomy
The structure provided below can help you identify and understand a Heading component's various parts.
exportdefault()=><Heading/>
Component Props
This section provides a comprehensive reference list for the component props, detailing descriptions, properties, types, and default behavior for easy project integration.
Heading
It inherits all the properties of @expo/html-elements's H1 component.
Themed
The themed version of the component is a pre-styled version of the component, which allows you to quickly integrate the component into your project. The component's design and functionality are fully defined, allowing you to focus on the more important aspects of your project. To know more about Themed Library please visit this link.
Props
Heading component is created using H1 component from @expo/html-elements. It extends all the props supported by Expo HTML Heading Elements, utility props and the props mentioned below.
Button
Name
Value
Default
isTruncated
true | false
false
bold
true | false
false
underline
true | false
false
strikeThrough
true | false
false
sub
true | false
false
italic
true | false
false
highlight
true | false
false
size
5xl | 4xl | 3xl | 2xl | xl | lg | md | sm | xs
md
Note: These props are exclusively applicable when utilizing the default configuration of gluestack-ui/config. If you are using a custom theme, these props may not be available.
Examples
The Examples section provides visual representations of the different variants of the component, allowing you to quickly and easily determine which one best fits your needs. Simply copy the code and integrate it into your project.
Heading Sizes
Heading component offers a range of sizes, including xs, sm, md, lg, xl, 2xl, 3xl, 4xl, and 5xl, allowing users to customize the size of the heading according to their design requirements. The size attribute determines which HTML tag (h1 to h6) will be rendered.