mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
40 lines
708 B
JavaScript
40 lines
708 B
JavaScript
import { Button } from './Button';
|
|
|
|
// More on how to set up stories at: https://storybook.js.org/docs/7.0/react/writing-stories/introduction
|
|
export default {
|
|
title: 'Example/Button',
|
|
component: Button,
|
|
tags: ['docsPage'],
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
};
|
|
|
|
// More on writing stories with args: https://storybook.js.org/docs/7.0/react/writing-stories/args
|
|
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',
|
|
},
|
|
};
|