mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
41 lines
750 B
Plaintext
41 lines
750 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
|
|
|
|
<Story
|
|
name="Primary"
|
|
render={() => ({
|
|
Component: Button,
|
|
props: {
|
|
background: '#ff0',
|
|
label: 'Button',
|
|
},
|
|
})} />
|
|
|
|
<Story
|
|
name="Secondary"
|
|
render={() => ({
|
|
Component: Button,
|
|
props: {
|
|
background: '#ff0',
|
|
label: '😄👍😍💯',
|
|
},
|
|
})} />
|
|
|
|
<Story
|
|
name="Tertiary"
|
|
render={() => ({
|
|
Component: Button,
|
|
props: {
|
|
background: '#ff0',
|
|
label: '📚📕📈🤓',
|
|
},
|
|
})} />
|
|
``` |