storybook/docs/snippets/svelte/button-story-default-docs-code.native-format.mdx
2022-11-17 16:33:22 +01:00

25 lines
715 B
Plaintext

```html
<!-- Button.stories.svelte -->
<script>
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
import Button from './Button.svelte';
//👇 Some function to demonstrate the behavior
function someFunction(someValue) {
return `i am a ${someValue}`;
}
</script>
<!--👇 Creates specific argTypes -->
<Meta title="Button" component={Button} argTypes={{ backgroundColor: { control: 'color' }, }} />
<!-- 👇 Assigns the function result to a variable and pass it as a prop into the component -->
<template let:args>
<button {...args} label="{someFunction(args.label)}" />
</template>
<Story name="ExampleStory" args={{ primary: true, size:'small', label: 'Button', }} />
```