mirror of https://github.com/rancher/dashboard.git
21 lines
448 B
Plaintext
21 lines
448 B
Plaintext
import { Meta, Props, Story, Preview } from '@storybook/addon-docs/blocks';
|
|
|
|
<Meta title="Design Systems" />
|
|
|
|
# Text Colors
|
|
|
|
<Story name="Text Colors">
|
|
{({
|
|
components: {},
|
|
template: `
|
|
<div class="row">
|
|
<div class="col span-12">
|
|
<p class="">Primary Text</p>
|
|
<p class="text-secondary">Secondary Text</p>
|
|
<p class="text-primary">Interactive Text</p>
|
|
<p class="text-muted">Disable Text</p>
|
|
</div>
|
|
</div>`
|
|
})}
|
|
</Story>
|