diff --git a/src/components/Button/index.stories.tsx b/src/components/Button/index.stories.tsx index 13bf3bfc..ec788c83 100644 --- a/src/components/Button/index.stories.tsx +++ b/src/components/Button/index.stories.tsx @@ -7,7 +7,12 @@ const meta = { title: 'Components/Button', component: Button, tags: ['autodocs'], - argTypes: {}, + argTypes: { + disabled: { + control: 'boolean', + description: '버튼의 비활성화 여부입니다.', + }, + }, } satisfies Meta; export default meta; @@ -17,12 +22,9 @@ type Story = StoryObj; export const Default: Story = { args: { variant: 'primary', - children: ( - <> - -

button

- - ), + size: 'md', + children: 'button', + disabled: false, }, }; @@ -93,7 +95,7 @@ export const SemiTransparent: Story = {

button

-