+
diff --git a/packages/frontend/src/stories/Components/Icons/ChevronDownSmallIcon.stories.tsx b/packages/frontend/src/stories/Components/Icons/ChevronDownSmallIcon.stories.tsx
new file mode 100644
index 00000000..b2cb4329
--- /dev/null
+++ b/packages/frontend/src/stories/Components/Icons/ChevronDownSmallIcon.stories.tsx
@@ -0,0 +1,25 @@
+import { Meta, StoryObj } from '@storybook/react';
+
+import { ChevronDownSmallIcon } from 'components/shared/CustomIcon';
+
+const meta: Meta = {
+ title: 'Icons/ChevronDownSmallIcon',
+ component: ChevronDownSmallIcon,
+ tags: ['autodocs'],
+ args: {
+ size: 'string | number' as unknown as any,
+ name: 'string',
+ },
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: ({ size, name }) => ,
+ args: {
+ size: '24px',
+ name: 'plus',
+ },
+};
diff --git a/packages/frontend/src/stories/Components/Icons/ChevronUpDown.stories.tsx b/packages/frontend/src/stories/Components/Icons/ChevronUpDown.stories.tsx
index 2b7a692c..f9c5ce01 100644
--- a/packages/frontend/src/stories/Components/Icons/ChevronUpDown.stories.tsx
+++ b/packages/frontend/src/stories/Components/Icons/ChevronUpDown.stories.tsx
@@ -1,6 +1,6 @@
import { Meta, StoryObj } from '@storybook/react';
-import { ChevronUpDown } from 'components/shared/CustomIcon/ChevronUpDown';
+import { ChevronUpDown } from 'components/shared/CustomIcon';
const meta: Meta = {
title: 'Icons/ChevronUpDown',
diff --git a/packages/frontend/src/stories/Components/Icons/ChevronUpSmallIcon.stories.tsx b/packages/frontend/src/stories/Components/Icons/ChevronUpSmallIcon.stories.tsx
new file mode 100644
index 00000000..cbe2a93a
--- /dev/null
+++ b/packages/frontend/src/stories/Components/Icons/ChevronUpSmallIcon.stories.tsx
@@ -0,0 +1,25 @@
+import { Meta, StoryObj } from '@storybook/react';
+
+import { ChevronUpSmallIcon } from 'components/shared/CustomIcon';
+
+const meta: Meta = {
+ title: 'Components/ChevronUpSmallIcon',
+ component: ChevronUpSmallIcon,
+ tags: ['autodocs'],
+ args: {
+ size: 'string | number' as unknown as any,
+ name: 'string',
+ },
+};
+
+export default meta;
+
+type Story = StoryObj;
+
+export const Default: Story = {
+ render: ({ size, name }) => ,
+ args: {
+ size: '24px',
+ name: 'chevron-up',
+ },
+};