diff --git a/packages/frontend/src/components/shared/CustomIcon/MenuIcon.tsx b/packages/frontend/src/components/shared/CustomIcon/MenuIcon.tsx
new file mode 100644
index 0000000..4cdefc0
--- /dev/null
+++ b/packages/frontend/src/components/shared/CustomIcon/MenuIcon.tsx
@@ -0,0 +1,27 @@
+import React from 'react';
+import { CustomIcon, CustomIconProps } from './CustomIcon';
+
+export const MenuIcon = (props: CustomIconProps) => {
+ return (
+
+
+
+
+
+ );
+};
diff --git a/packages/frontend/src/components/shared/CustomIcon/SearchIcon.tsx b/packages/frontend/src/components/shared/CustomIcon/SearchIcon.tsx
index 7688adc..b72c059 100644
--- a/packages/frontend/src/components/shared/CustomIcon/SearchIcon.tsx
+++ b/packages/frontend/src/components/shared/CustomIcon/SearchIcon.tsx
@@ -4,17 +4,17 @@ import { CustomIcon, CustomIconProps } from './CustomIcon';
export const SearchIcon = (props: CustomIconProps) => {
return (
);
diff --git a/packages/frontend/src/components/shared/CustomIcon/index.ts b/packages/frontend/src/components/shared/CustomIcon/index.ts
index 096761a..6b58743 100644
--- a/packages/frontend/src/components/shared/CustomIcon/index.ts
+++ b/packages/frontend/src/components/shared/CustomIcon/index.ts
@@ -48,6 +48,7 @@ export * from './UndoIcon';
export * from './LoaderIcon';
export * from './MinusCircleIcon';
export * from './CopyIcon';
+export * from './MenuIcon';
// Templates
export * from './templates';