mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
22 lines
439 B
Plaintext
22 lines
439 B
Plaintext
```html
|
|
<script>
|
|
import { Meta, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<meta title="Button" component="{Button}" />
|
|
|
|
<Story name="Primary">
|
|
<button background="#ff0" label="Button" />
|
|
</Story>
|
|
|
|
<Story name="Secondary">
|
|
<button background="#ff0" label="😄👍😍💯" />
|
|
</Story>
|
|
|
|
<Story name="Tertiary">
|
|
<button background="#ff0" label="📚📕📈🤓" />
|
|
</Story>
|
|
```
|