-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec3a103
commit 23fda20
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import Button from './Button'; | ||
|
||
const meta = { | ||
title: 'Shared/Button', | ||
component: Button, | ||
parameters: { | ||
}, | ||
tags: ['autodocs'], | ||
argTypes: { | ||
}, | ||
} satisfies Meta<typeof Button>; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof meta>; | ||
|
||
export const largeprimary: Story = { | ||
args: { | ||
children: '로그인 하기', | ||
full: true, | ||
size: 'large', | ||
}, | ||
}; | ||
|
||
export const primary: Story = { | ||
args: { | ||
children: '로그인 하기', | ||
size: 'large', | ||
}, | ||
}; | ||
|
||
export const weakPrimary: Story = { | ||
args: { | ||
children: '로그인 하기', | ||
size: 'large', | ||
weak: true, | ||
}, | ||
}; | ||
|
||
export const filter: Story = { | ||
args: { | ||
children: '조회순', | ||
}, | ||
}; | ||
|
||
export const gray: Story = { | ||
args: { | ||
children: '조회순', | ||
color: 'gray', | ||
}, | ||
}; | ||
|
||
export const Weakgray: Story = { | ||
args: { | ||
children: '조회순', | ||
color: 'gray', | ||
weak: true, | ||
}, | ||
}; |