storybook/docs/snippets/web-components/csf-2-example-story.js.mdx
2022-12-23 18:48:39 +00:00

9 lines
228 B
Plaintext

```js
// CSF 2
// Other imports and story implementation
export const Default = ({ primary, backgroundColor, size, label }) =>
html`<custom-button ?primary="${primary}" size="${size}" label="${label}"></custom-button>`;
```