Skip to main content

SectionContent

Child of the Section component to display content. You can have multiple SectionContent per Section.

Here you can add whatever you want, and add as many section content has you want.

<SectionContent>
{/* insert content */}
</SectionContent>

Props

Align

Override, if necessary, the align prop of the parent Section component.

Align all content and text to the start of the inline axis.

Align all content and text to the center.

Align all content and text to the end of the inline axis.

<SectionContent>
Align all content and text to the start of the inline axis
</SectionContent>
<SectionContent align="center">
Align all content and text to the center
</SectionContent>
<SectionContent align="end">
Align all content and text to the end of the inline axis
</SectionContent>