💄 更改侧边栏下载列表图标

This commit is contained in:
柚子
2025-01-22 01:54:19 +08:00
parent 5d3481b9ea
commit e0933216d4

View File

@@ -12,7 +12,7 @@ import {
SidebarRail SidebarRail
} from '../ui/sidebar'; } from '../ui/sidebar';
import "./style.css" import "./style.css"
import { Compass, Heart, RefreshCw, Settings, Waves } from 'lucide-solid'; import { Compass, Heart, RefreshCw, Settings, Download } from 'lucide-solid';
import { useCategoriesStore } from '@/features/categories/store'; import { useCategoriesStore } from '@/features/categories/store';
import { getIconComponent } from '@/lib/icon'; import { getIconComponent } from '@/lib/icon';
@@ -30,7 +30,7 @@ const menuItems = [
{ {
title: '下载列表', title: '下载列表',
url: '/', url: '/',
icon: () => <Waves size={20} /> icon: () => <Download size={20} />
} }
]; ];