diff --git a/packages/frontend/src/components/shared/CustomIcon/GearIcon.tsx b/packages/frontend/src/components/shared/CustomIcon/GearIcon.tsx
new file mode 100644
index 0000000..c1ee9e6
--- /dev/null
+++ b/packages/frontend/src/components/shared/CustomIcon/GearIcon.tsx
@@ -0,0 +1,16 @@
+import { CustomIcon, CustomIconProps } from './CustomIcon';
+
+export const GearIcon = (props: CustomIconProps) => {
+ return (
+
+
+
+
+ );
+};
diff --git a/packages/frontend/src/components/shared/CustomIcon/index.ts b/packages/frontend/src/components/shared/CustomIcon/index.ts
index 4d77a8b..805e70a 100644
--- a/packages/frontend/src/components/shared/CustomIcon/index.ts
+++ b/packages/frontend/src/components/shared/CustomIcon/index.ts
@@ -62,6 +62,7 @@ export * from './WarningTriangleIcon';
export * from './CheckRadioOutlineIcon';
export * from './TrendingIcon';
export * from './ChevronDoubleDownIcon';
+export * from './GearIcon';
// Templates
export * from './templates';
diff --git a/packages/frontend/src/pages/org-slug/projects/id/Settings.tsx b/packages/frontend/src/pages/org-slug/projects/id/Settings.tsx
index 2b334c3..8b2f1f3 100644
--- a/packages/frontend/src/pages/org-slug/projects/id/Settings.tsx
+++ b/packages/frontend/src/pages/org-slug/projects/id/Settings.tsx
@@ -9,31 +9,32 @@ import {
} from '@snowballtools/material-tailwind-react-fork';
import { OutletContextType } from '../../../../types/types';
+import { GearIcon } from '../../../../components/shared/CustomIcon/GearIcon';
const tabsData = [
{
label: 'General',
- icon: '^',
+ icon: ,
value: 'general',
},
{
label: 'Domains',
- icon: '^',
+ icon: '',
value: 'domains',
},
{
label: 'Git',
- icon: '^',
+ icon: '',
value: 'git',
},
{
label: 'Environment variables',
- icon: '^',
+ icon: '',
value: 'environment-variables',
},
{
label: 'Members',
- icon: '^',
+ icon: '',
value: 'members',
},
];