storybook/docs/snippets/angular/button-story-with-emojis.ts.mdx
2020-08-07 17:05:17 +01:00

29 lines
448 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",
},
});
```