diff --git a/apps/docs/sidebars.js b/apps/docs/sidebars.js
index 3e6d0ecf..9087241f 100644
--- a/apps/docs/sidebars.js
+++ b/apps/docs/sidebars.js
@@ -539,7 +539,7 @@ module.exports = {
id: 'references/gitlab-integration',
label: 'Gitlab Integration',
customProps: {
- sidebar_icon: 'cloud-arrow-up',
+ sidebar_icon: 'gitlab',
},
className: 'homepage-sidebar-item',
},
diff --git a/apps/docs/src/theme/Icon/Firewall/index.tsx b/apps/docs/src/theme/Icon/Firewall/index.tsx
index 03def4c6..723dfd03 100644
--- a/apps/docs/src/theme/Icon/Firewall/index.tsx
+++ b/apps/docs/src/theme/Icon/Firewall/index.tsx
@@ -17,15 +17,7 @@ const IconFirewall = (props: IconProps) => {
{...props}
className={clsx('text-ui-fg-subtle', props.className)}
>
-
-
-
-
-
+
);
};
diff --git a/apps/docs/src/theme/Icon/Gitlab/index.tsx b/apps/docs/src/theme/Icon/Gitlab/index.tsx
new file mode 100644
index 00000000..ec19a6f8
--- /dev/null
+++ b/apps/docs/src/theme/Icon/Gitlab/index.tsx
@@ -0,0 +1,21 @@
+import { IconProps } from '@medusajs/icons/dist/types';
+import clsx from 'clsx';
+import React from 'react';
+
+const IconGitlab = (props: IconProps) => {
+ return (
+
+ );
+};
+
+export default IconGitlab;
diff --git a/apps/docs/src/theme/Icon/index.tsx b/apps/docs/src/theme/Icon/index.tsx
index 2b97ae56..cc6cfd80 100644
--- a/apps/docs/src/theme/Icon/index.tsx
+++ b/apps/docs/src/theme/Icon/index.tsx
@@ -147,6 +147,7 @@ import IconFirewall from './Firewall';
import IconZerops from './Zerops';
import IconDatabase from './Database';
import IconCloudOk from './CloudOk';
+import IconGitlab from './Gitlab';
export default {
@@ -212,6 +213,7 @@ export default {
'gift-solid': GiftSolid,
'flag-mini': IconFlagMini,
'firewall': IconFirewall,
+ gitlab: IconGitlab,
github: IconGitHub,
'globe-europe': GlobeEurope,
'globe-europe-solid': GlobeEuropeSolid,