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

22 lines
283 B
Plaintext

```js
// Button.stories.js
export default {
component: 'demo-button',
};
export const Primary = {
args: {
primary: true,
label: 'Button',
},
};
export const PrimaryLongName = {
args: {
...Primary.args,
label: 'Primary with a really long name',
},
};
```