storybook/docs/snippets/svelte/button-story-with-emojis.js.mdx

29 lines
454 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: "📚📕📈🤓",
},
});
```