storybook/docs/snippets/common/button-story-primary-long-name.js.mdx
2021-06-28 23:00:33 +01:00

10 lines
234 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
export const PrimaryLongName = Template.bind({});
PrimaryLongName.args = {
...Primary.args,
label: 'Primary with a really long name',
}
```