Skip to content

Paragraph

Mika Berglund edited this page May 5, 2020 · 3 revisions

Paragraph Component

The Paragraph component is a generic component that produces a <p> element. You can use the Paragraph component instead of a <p> element in order to leverage all the parameters defined on the BootstrapComponentBase base class.

Inheritance

Paragraph : BootstrapComponentBase

Parameters

Name Type Description
IsLead bool A lead paragraph stands out from standard paragraphs, and is typically used on the first paragraph in a longer text.

Examples

Code examples on how to use the Paragraph component.

Lead Paragraph

<Paragraph IsLead="true">
    This is a lead paragraph that stands out from the
    paragraph below.
</Paragraph>

<Paragraph>
    This is a normal paragraph.
</Paragraph>
Clone this wiki locally