mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* add component import examples * component library story html formatting/cleanup nits * Update libs/components/src/dialog/dialog/dialog.mdx Co-authored-by: Will Martin <contact@willmartian.com> * Update libs/components/src/badge/badge.mdx Co-authored-by: Will Martin <contact@willmartian.com> * Update libs/components/src/dialog/simple-dialog/simple-dialog.mdx Co-authored-by: Will Martin <contact@willmartian.com> --------- Co-authored-by: Will Martin <contact@willmartian.com>
72 lines
947 B
Plaintext
72 lines
947 B
Plaintext
import { Meta, Story, Source, Primary, Controls } from "@storybook/addon-docs";
|
|
|
|
import * as stories from "./typography.stories";
|
|
|
|
<Meta of={stories} />
|
|
|
|
```ts
|
|
import { TypographyModule } from "@bitwarden/components";
|
|
```
|
|
|
|
# Typography
|
|
|
|
<Primary />
|
|
|
|
<Controls />
|
|
|
|
## Stories
|
|
|
|
<Story of={stories.H1} />
|
|
|
|
```html
|
|
<h1 bitTypography="h1">H1</h1>
|
|
```
|
|
|
|
<Story of={stories.H2} />
|
|
|
|
```html
|
|
<h2 bitTypography="h2">H2</h2>
|
|
```
|
|
|
|
<Story of={stories.H3} />
|
|
|
|
```html
|
|
<h3 bitTypography="h3">H3</h3>
|
|
```
|
|
|
|
<Story of={stories.H4} />
|
|
|
|
```html
|
|
<h4 bitTypography="h4">H4</h4>
|
|
```
|
|
|
|
<Story of={stories.H5} />
|
|
|
|
```html
|
|
<h5 bitTypography="h5">H5</h5>
|
|
```
|
|
|
|
<Story of={stories.H6} />
|
|
|
|
```html
|
|
<h6 bitTypography="h6">H6</h6>
|
|
```
|
|
|
|
<Story of={stories.Body1} />
|
|
|
|
```html
|
|
<p bitTypography="body1">Body 1</p>
|
|
```
|
|
|
|
<Story of={stories.Body2} />
|
|
|
|
```html
|
|
<p bitTypography="body2">Body 2</h1>
|
|
```
|
|
|
|
<Story of={stories.Helper} />
|
|
|
|
```html
|
|
<p bitTypography="helper">Helper Text</h1>
|
|
```
|