Skip to content

Commit

Permalink
stroybookのボタンの名前を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
shigekk committed Mar 24, 2024
1 parent 661b2a6 commit a9af97d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/LinkButton/LinkButton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ export default {

const Template: StoryFn<typeof LinkButton> = (args) => <LinkButton {...args} />;

export const Primary = Template.bind({});
Primary.args = {
export const Green = Template.bind({});
Green.args = {
children: 'Click Me',
variant: 'green',
href: '/',
size: 'medium',
};

export const Secondary = Template.bind({});
Secondary.args = {
export const Gray = Template.bind({});
Gray.args = {
children: 'Click Me',
variant: 'gray',
href: '/',
Expand Down

0 comments on commit a9af97d

Please sign in to comment.