storybook/docs/snippets/svelte/button-story-using-args.native-format.mdx
2021-05-07 18:07:39 +01:00

47 lines
770 B
Plaintext

```html
<!-- Button.stories.svelte -->
<script>
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
import Button from './Button.svelte';
</script>
<Meta
title="Button"
component={Button}
argTypes={{
label: { control: 'text' },
primary: { control: 'boolean' },
}}
/>
<!-- 👇 We create a “template” of how args map to rendering -->
<Template let:args>
<Button {...args} />
</Template>
<!-- 👇 Each story then reuses that template -->
<Story
name="Primary"
args={{
background: '#ff0',
label: 'Button'
}}
/>
<Story
name="Secondary"
args={{
background: '#ff0',
label: '😄👍😍💯'
}}
/>
<Story
name="Tertiary"
args={{
background: '#ff0',
label: '📚📕📈🤓'
}}
/>
```