mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
```md
|
|
|
|
<!--- Badge.stories.mdx --->
|
|
|
|
import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
|
|
|
import { Badge } from './Badge';
|
|
import { Icon } from './Icon';
|
|
|
|
<Meta title="MDX/Badge" component={Badge} />
|
|
|
|
# Badge
|
|
|
|
Let's define a story for our `Badge` component:
|
|
|
|
<Story name="positive">
|
|
<Badge status="positive">Positive</Badge>
|
|
</Story>
|
|
|
|
We can drop it in a `Canvas` to get a code snippet:
|
|
|
|
<Canvas>
|
|
<Story name="negative">
|
|
<Badge status="negative">Negative</Badge>
|
|
</Story>
|
|
</Canvas>
|
|
|
|
We can even preview multiple stories in a block. This
|
|
gets rendered as a group, but defines individual stories
|
|
with unique URLs and isolated snapshot tests.
|
|
|
|
<Canvas>
|
|
<Story name="warning">
|
|
<Badge status="warning">Warning</Badge>
|
|
</Story>
|
|
<Story name="neutral">
|
|
<Badge status="neutral">Neutral</Badge>
|
|
</Story>
|
|
<Story name="error">
|
|
<Badge status="error">Error</Badge>
|
|
</Story>
|
|
<Story name="with icon">
|
|
<Badge status="warning">
|
|
<Icon icon="check" inline />
|
|
with icon
|
|
</Badge>
|
|
</Story>
|
|
</Canvas>
|
|
``` |