From 310277f5cd6bf754ce6a5c5c841d5687d3cd7ffe Mon Sep 17 00:00:00 2001 From: Hyko Date: Fri, 24 Apr 2026 21:10:12 -0400 Subject: [PATCH] refactor(ui): replace ChevronDownIcon with ArrowDown01Icon in Table - add ArrowDown01Icon svg component to shared icons index - update Table.js to use ArrowDown01Icon instead of ChevronDownIcon for sort indicator --- src/shared/components/Table.js | 4 ++-- src/shared/icons/index.js | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) 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) => (