🎨 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.
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user