diff --git a/src/shared/components/Table.js b/src/shared/components/Table.js
index 104a401..b38261e 100644
--- a/src/shared/components/Table.js
+++ b/src/shared/components/Table.js
@@ -3,7 +3,7 @@
import React from 'react';
import Badge from './Badge';
import Button from './Button';
-import { TorriGateIcon, ArrowDown01Icon } from '@zen/core/shared/icons';
+import { TorriGateIcon, ChevronDownIcon } from '@zen/core/shared/icons';
const ROW_SIZE = {
sm: { cell: 'px-4 py-[11px]', header: 'px-4 py-[9px]', mobile: 'p-4' },
@@ -41,7 +41,7 @@ const Table = ({
const isDesc = isActive && sortOrder === 'desc';
return (
-
+
);
};
diff --git a/src/shared/icons/index.js b/src/shared/icons/index.js
index 90f6f47..243ba55 100644
--- a/src/shared/icons/index.js
+++ b/src/shared/icons/index.js
@@ -525,10 +525,4 @@ export const Menu01Icon = (props) => (
-);
-
-export const ArrowDown01Icon = (props) => (
-
);
\ No newline at end of file