mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
21 lines
438 B
Plaintext
21 lines
438 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>
|
|
``` |