diff --git a/src/shared/components/Table.js b/src/shared/components/Table.js index b38261e..104a401 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, ChevronDownIcon } from '@zen/core/shared/icons'; +import { TorriGateIcon, ArrowDown01Icon } 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 243ba55..08be181 100644 --- a/src/shared/icons/index.js +++ b/src/shared/icons/index.js @@ -11,6 +11,12 @@ export const ChevronRightIcon = (props) => ( ); +export const ArrowDown01Icon = (props) => ( + + + +); + export const UserCircle02Icon = (props) => (