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

27 lines
410 B
Plaintext

```js
// Button.stories.js
export const Primary = () => ({
Component: Button,
props: {
background: '#ff0',
label: 'Button',
},
});
export const Secondary = () => ({
Component: Button,
props: {
background: '#ff0',
label: '😄👍😍💯',
},
});
export const Tertiary = () => ({
Component: Button,
props: {
background: '#ff0',
label: '📚📕📈🤓',
},
});
```