storybook/docs/snippets/angular/button-story-with-emojis.mdx.mdx
2021-11-03 23:31:14 +00:00

36 lines
539 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './button.component';
<Meta title="Button" component={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>
```