storybook/docs/snippets/svelte/button-story-with-emojis.mdx.mdx
2021-10-11 19:53:39 +01:00

41 lines
750 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.svelte';
<Meta title="Button" component={Button} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story
name="Primary"
render={() => ({
Component: Button,
props: {
background: '#ff0',
label: 'Button',
},
})} />
<Story
name="Secondary"
render={() => ({
Component: Button,
props: {
background: '#ff0',
label: '😄👍😍💯',
},
})} />
<Story
name="Tertiary"
render={() => ({
Component: Button,
props: {
background: '#ff0',
label: '📚📕📈🤓',
},
})} />
```