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

22 lines
251 B
Plaintext

```js
// Button.stories.js
export default {
component: 'demo-button',
};
export const Primary = {
args: {
primary: true,
label: 'Button',
},
};
export const Secondary = {
args: {
...Primary.args,
primary: false,
},
};
```