mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
37 lines
520 B
Plaintext
37 lines
520 B
Plaintext
```md
|
|
import { Meta, Story } from '@storybook/addon-docs/blocks';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<Meta title="Button" component={Button}/>
|
|
|
|
# Button
|
|
|
|
<Story name="Primary">
|
|
{{
|
|
props: {
|
|
background: '#ff0',
|
|
label: 'Button',
|
|
},
|
|
}}
|
|
</Story>
|
|
|
|
<Story name="Secondary">
|
|
{{
|
|
props: {
|
|
background: '#ff0',
|
|
label: '😄👍😍💯'
|
|
},
|
|
}}
|
|
</Story>
|
|
|
|
<Story name="Tertiary">
|
|
{{
|
|
props: {
|
|
background: '#ff0',
|
|
label: '📚📕📈🤓',
|
|
},
|
|
}}
|
|
</Story>
|
|
```
|