Skip to content

Label

---
import { Label } from "wf-components";
---
<Label>Label text</Label>

Props

color

Optional The color of the label, defaults to default and the options are default & brighter.

---
import { Label } from "wf-components";
---
<Label color="default">Default Label</Label>
<Label color="brighter">Brighter Label</Label>

disabled

Optional If the label is disabled, it will not be clickable.

---
import { Label } from "wf-components";
---
<Label disabled>Disabled Label</Label>