mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
42 lines
513 B
Plaintext
42 lines
513 B
Plaintext
import {
|
|
Meta,
|
|
Canvas,
|
|
Source,
|
|
Primary,
|
|
Controls,
|
|
Title,
|
|
Description,
|
|
} from "@storybook/addon-docs/blocks";
|
|
|
|
import * as stories from "./checkbox.stories";
|
|
|
|
<Meta of={stories} />
|
|
|
|
```ts
|
|
import { CheckboxModule } from "@bitwarden/components";
|
|
```
|
|
|
|
<Title />
|
|
<Description />
|
|
|
|
<Primary />
|
|
<Controls />
|
|
|
|
## Stories
|
|
|
|
### Default
|
|
|
|
<Canvas of={stories.Default} />
|
|
|
|
### Hint
|
|
|
|
<Canvas of={stories.Hint} />
|
|
|
|
### Custom
|
|
|
|
<Canvas of={stories.Custom} />
|
|
|
|
### Intermediate
|
|
|
|
<Canvas of={stories.Indeterminate} />
|