Skip to content

Commit

Permalink
Remove unnecessary args
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpens committed Jul 26, 2024
1 parent 65867a8 commit a69f346
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions storybook/src/components/LinkList/LinkList.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ export default meta

const linkMeta = {
component: LinkList.Link,
args: {
children: linkList[0],
contrastColor: false,
href: '#',
icon: Icons.ChevronRightIcon,
inverseColor: false,
},
} satisfies Meta<typeof LinkList.Link>

type Story = StoryObj<typeof meta>
Expand All @@ -51,12 +44,6 @@ const LinkStoryTemplate: LinkStory = {
inverseColor: false,
},
argTypes: {
contrastColor: {
control: { type: 'boolean' },
},
inverseColor: {
control: { type: 'boolean' },
},
icon: {
control: { type: 'select' },
options: Object.keys(Icons),
Expand All @@ -65,7 +52,7 @@ const LinkStoryTemplate: LinkStory = {
size: {
control: {
type: 'radio',
labels: { small: 'small', undefined: 'medium', large: 'large' },
labels: { undefined: 'medium' },
},
options: ['small', undefined, 'large'],
},
Expand Down

0 comments on commit a69f346

Please sign in to comment.