mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
37 lines
534 B
Plaintext
37 lines
534 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<Meta title="Button" component={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>
|
|
``` |