mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import { Button } from './Button';
|
|
|
|
// More on default export: https://storybook.js.org/docs/web-components/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'Example/Button',
|
|
// This component will have an automatically generated docsPage entry: https://storybook.js.org/web-components/vue/writing-docs/docs-page
|
|
tags: ['docsPage'],
|
|
// More on component templates: https://storybook.js.org/docs/web-components/writing-stories/introduction#using-args
|
|
render: (args) => Button(args),
|
|
// More on argTypes: https://storybook.js.org/docs/web-components/api/argtypes
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
onClick: { action: 'onClick' },
|
|
size: {
|
|
control: { type: 'select' },
|
|
options: ['small', 'medium', 'large'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Primary = {
|
|
args: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Secondary = {
|
|
args: {
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Large = {
|
|
args: {
|
|
size: 'large',
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Small = {
|
|
args: {
|
|
size: 'small',
|
|
label: 'Button',
|
|
},
|
|
};
|