storybook/docs/snippets/web-components/button-story-component-args-primary.js.mdx
2021-11-09 01:41:54 +00:00

21 lines
412 B
Plaintext

```js
// demo-button.stories.js
import { html } from 'lit-html';
import './demo-button';
export default {
title: 'Button',
//👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
//👇 Now all Button stories will be primary.
primary: true,
},
};
export const Primary = ({ primary }) => html`<demo-button ?primary=${primary}></demo-button>`;
```