Skip to content

Paragraph

This is a simple paragraph component.

---
import { Paragraph } from "wf-components";
---
<Paragraph>This is a simple paragraph component.</Paragraph>

Props


size

Optional Defaults to md. The size of the paragraph. Can be xs, sm, md, or lg.

This is a simple paragraph component.

This is a simple paragraph component.

This is a simple paragraph component.

This is a simple paragraph component.

---
import { Paragraph } from "wf-components";
---
<Paragraph size="lg">This is a simple paragraph component.</Paragraph>
<Paragraph size="md">This is a simple paragraph component.</Paragraph>
<Paragraph size="sm">This is a simple paragraph component.</Paragraph>
<Paragraph size="xs">This is a simple paragraph component.</Paragraph>

text

Optional The text to display in the paragraph.

This is a simple paragraph component.

---
import { Paragraph } from "wf-components";
---
<Paragraph text="This is a simple paragraph component." />