storybook/docs/snippets/angular/button-story-with-emojis.ts.mdx
2021-08-28 01:52:57 +01:00

37 lines
522 B
Plaintext

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