mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
45 lines
1002 B
TypeScript
45 lines
1002 B
TypeScript
import type { Meta, StoryFn } from '@storybook/html';
|
|
import { createButton, ButtonProps } from './Button';
|
|
|
|
export default {
|
|
title: 'Example/Button',
|
|
argTypes: {
|
|
label: { control: 'text' },
|
|
primary: { control: 'boolean' },
|
|
backgroundColor: { control: 'color' },
|
|
size: {
|
|
control: { type: 'select', options: ['small', 'medium', 'large'] },
|
|
},
|
|
onClick: { action: 'onClick' },
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<ButtonProps> = (args) => {
|
|
// You can either use a function to create DOM elements or use a plain html string!
|
|
// return `<div>${label}</div>`;
|
|
return createButton(args);
|
|
};
|
|
|
|
export const Primary = Template.bind({});
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
|
|
export const Secondary = Template.bind({});
|
|
Secondary.args = {
|
|
label: 'Button',
|
|
};
|
|
|
|
export const Large = Template.bind({});
|
|
Large.args = {
|
|
size: 'large',
|
|
label: 'Button',
|
|
};
|
|
|
|
export const Small = Template.bind({});
|
|
Small.args = {
|
|
size: 'small',
|
|
label: 'Button',
|
|
};
|