storybook/docs/snippets/svelte/button-story-with-emojis.mdx.mdx
2021-11-03 23:31:14 +00:00

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>
```