Преглед на файлове

🎨 feat(ui): replace list icon with tags icon for channel tag aggregation

- Replace IconList with Tags icon from lucide-react for better semantic representation
- Update renderTagType function to use Tags icon instead of list icon
- Remove unused IconList import from semi-icons
- Improve visual clarity for tag aggregation feature in channels table

The Tags icon better represents the concept of multiple tags being aggregated
together, providing more intuitive user experience in the channels management
interface.
Apple\Apple преди 9 месеца
родител
ревизия
ef5832777d
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      web/src/components/table/ChannelsTable.js

+ 3 - 3
web/src/components/table/ChannelsTable.js

@@ -21,7 +21,8 @@ import {
   Timer,
   Clock,
   AlertTriangle,
-  Coins
+  Coins,
+  Tags
 } from 'lucide-react';
 
 import { CHANNEL_OPTIONS, ITEMS_PER_PAGE } from '../../constants/index.js';
@@ -44,7 +45,6 @@ import {
 } from '@douyinfe/semi-ui';
 import EditChannel from '../../pages/Channel/EditChannel.js';
 import {
-  IconList,
   IconTreeTriangleDown,
   IconFilter,
   IconPlus,
@@ -92,7 +92,7 @@ const ChannelsTable = () => {
     return (
       <Tag
         color='light-blue'
-        prefixIcon={<IconList />}
+        prefixIcon={<Tags size={14} />}
         size='large'
         shape='circle'
         type='light'