mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
39 lines
662 B
TypeScript
39 lines
662 B
TypeScript
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Example/Button',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
onClick: { action: 'onClick' },
|
|
},
|
|
};
|
|
|
|
const Template = (args: Button) => ({
|
|
component: Button,
|
|
props: 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',
|
|
};
|