storybook/docs/snippets/svelte/button-story-with-emojis.js.mdx
2021-08-05 18:51:23 +01:00

34 lines
518 B
Plaintext

```js
// Button.stories.js
import Button from './Button.svelte';
export default {
component: Button,
title:'Components/Button'
}
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: '📚📕📈🤓',
},
});
```