From a69f3461402ca100f9faa958993546d7fd6bac52 Mon Sep 17 00:00:00 2001 From: alimpens Date: Fri, 26 Jul 2024 14:34:22 +0200 Subject: [PATCH] Remove unnecessary args --- .../src/components/LinkList/LinkList.stories.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/storybook/src/components/LinkList/LinkList.stories.tsx b/storybook/src/components/LinkList/LinkList.stories.tsx index 9a247a367a..ff8e072752 100644 --- a/storybook/src/components/LinkList/LinkList.stories.tsx +++ b/storybook/src/components/LinkList/LinkList.stories.tsx @@ -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 type Story = StoryObj @@ -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), @@ -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'], },