mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
```ts
|
|
// CSF 2
|
|
|
|
// Other imports and story implementation
|
|
|
|
export const Default: Story = ({ primary, backgroundColor, size, label }) =>
|
|
html`<custom-button ?primary="${primary}" size="${size}" label="${label}"></custom-button>`;
|
|
```
|