storybook/docs/snippets/svelte/button-story-with-emoijs.mdx.mdx
2021-05-06 17:36:21 +01:00

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