From bd31d29ac771b512dfb30d67ee76ac121f3655a2 Mon Sep 17 00:00:00 2001 From: Hyko Date: Fri, 24 Apr 2026 21:08:52 -0400 Subject: [PATCH] refactor(ui): replace ArrowDown01Icon with ChevronDownIcon in Table - swap ArrowDown01Icon for ChevronDownIcon in Table sort indicator - remove ArrowDown01Icon export from shared icons index --- src/shared/components/Table.js | 4 ++-- src/shared/icons/index.js | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) 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