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

24 lines
316 B
Plaintext

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