Typography Components
A component for rendering headings of major sections within a page. It helps to create a clear and accessible document structure.
Default section title styling.
BasicSectionTitle.tsx
<SectionTitle>This is a Basic Section Title</SectionTitle>
Section titles come in different sizes.
SectionTitleSizes.tsx
<Col lg>
<SectionTitle xs>SectionTitle xs</SectionTitle>
<SectionTitle sm>SectionTitle sm</SectionTitle>
<SectionTitle md>SectionTitle md</SectionTitle>
<SectionTitle lg>SectionTitle lg</SectionTitle>
<SectionTitle xl>SectionTitle xl</SectionTitle>
</Col>
Section titles support different font weights.
SectionTitleFontWeights.tsx
<Col lg>
<SectionTitle thin>SectionTitle thin</SectionTitle>
<SectionTitle extralight>SectionTitle extralight</SectionTitle>
<SectionTitle light>SectionTitle light</SectionTitle>
<SectionTitle normal>SectionTitle normal</SectionTitle>
<SectionTitle medium>SectionTitle medium</SectionTitle>
<SectionTitle semibold>SectionTitle semibold</SectionTitle>
<SectionTitle bold>SectionTitle bold</SectionTitle>
<SectionTitle extrabold>SectionTitle extrabold</SectionTitle>
<SectionTitle black>SectionTitle black</SectionTitle>
</Col>
Section titles can have different color appearances.
SectionTitleAppearances.tsx
<Col lg>
<SectionTitle default>SectionTitle default</SectionTitle>
<SectionTitle accent>SectionTitle accent</SectionTitle>
<SectionTitle primary>SectionTitle primary</SectionTitle>
<SectionTitle secondary>SectionTitle secondary</SectionTitle>
<SectionTitle tertiary>SectionTitle tertiary</SectionTitle>
<SectionTitle success>SectionTitle success</SectionTitle>
<SectionTitle danger>SectionTitle danger</SectionTitle>
<SectionTitle warning>SectionTitle warning</SectionTitle>
<SectionTitle info>SectionTitle info</SectionTitle>
</Col>
Section titles support different font families.
SectionTitleFontFamilies.tsx
<Col lg>
<SectionTitle sans>SectionTitle sans</SectionTitle>
<SectionTitle serif>SectionTitle serif</SectionTitle>
<SectionTitle mono>SectionTitle mono</SectionTitle>
</Col>
Section titles support different styles and decorations.
SectionTitleStyles.tsx
<Col lg>
<SectionTitle underline>SectionTitle underline</SectionTitle>
<SectionTitle lineThrough>SectionTitle lineThrough</SectionTitle>
<SectionTitle noUnderline>SectionTitle noUnderline</SectionTitle>
<SectionTitle overline>SectionTitle overline</SectionTitle>
</Col>
Section titles support different case transformations.
SectionTitleTransformations.tsx
<Col lg>
<SectionTitle uppercase>SectionTitle uppercase</SectionTitle>
<SectionTitle lowercase>SectionTitle lowercase</SectionTitle>
<SectionTitle capitalize>SectionTitle capitalize</SectionTitle>
<SectionTitle normalCase>SectionTitle normalCase</SectionTitle>
</Col>
Section titles can be aligned differently.
SectionTitleAlignment.tsx
<div className="space-y-4 border-2 border-dashed border-gray-300 p-4">
<SectionTitle textLeft>Left Aligned Section Title</SectionTitle>
<SectionTitle textCenter>Center Aligned Section Title</SectionTitle>
<SectionTitle textRight>Right Aligned Section Title</SectionTitle>
</div>
Combining multiple section title properties.
SectionTitleCombinations.tsx
<Col lg>
<SectionTitle bold lg primary>Large Bold Primary Section Title</SectionTitle>
<SectionTitle italic secondary sm>Small Italic Secondary Section Title</SectionTitle>
<SectionTitle md semibold success underline>Medium Semibold Success Underlined Section Title</SectionTitle>
<SectionTitle light uppercase xs>Extra Small Light Uppercase Section Title</SectionTitle>
<SectionTitle danger extrabold textCenter xl>Extra Large Extra Bold Danger Centered Section Title</SectionTitle>
</Col>