storybook/docs/snippets/angular/button-story-with-emojis.ts.mdx
2020-09-08 13:34:29 +09:00

30 lines
453 B
Plaintext

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