From 8f456c04f50efee0835bb63ac98c56fd5726038a Mon Sep 17 00:00:00 2001 From: Vivian Phung Date: Tue, 14 May 2024 15:54:56 -0400 Subject: [PATCH] [8/n][Storybook] IconWithFrame update argTypes --- .../frontend/src/stories/Components/IconWithFrame.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/stories/Components/IconWithFrame.stories.tsx b/packages/frontend/src/stories/Components/IconWithFrame.stories.tsx index 7c4a5ff9..2416ed2f 100644 --- a/packages/frontend/src/stories/Components/IconWithFrame.stories.tsx +++ b/packages/frontend/src/stories/Components/IconWithFrame.stories.tsx @@ -1,7 +1,7 @@ import { StoryObj, Meta } from '@storybook/react'; -import { PlusIcon } from 'components/shared/CustomIcon'; import { IconWithFrame } from 'components/shared/IconWithFrame'; +import { PlusIcon } from 'components/shared/CustomIcon'; const meta: Meta = { title: 'Components/IconWithFrame', @@ -12,7 +12,7 @@ const meta: Meta = { control: 'object', }, hasHighlight: { - control: 'boolean', + type: 'boolean', }, }, };