storybook/docs/snippets/web-components/button-story-using-args.js.mdx
2023-05-25 21:04:33 +01:00

29 lines
364 B
Plaintext

```js
// Button.stories.js
export default {
component: 'demo-button',
};
export const Primary = {
args: {
background: '#ff0',
label: 'Button',
},
};
export const Secondary = {
args: {
...Primary.args,
label: '😄👍😍💯',
},
};
export const Tertiary = {
args: {
...Primary.args,
label: '📚📕📈🤓',
},
};
```