From 1f2696d9e6f2b1710a56f970fad62bf421e5f13d Mon Sep 17 00:00:00 2001 From: mtvpls Date: Wed, 25 Mar 2026 23:19:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E7=94=B5=E8=A7=86=E7=9B=B4?= =?UTF-8?q?=E6=92=AD=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MobileBottomNav.tsx | 6 +++--- src/components/Sidebar.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/MobileBottomNav.tsx b/src/components/MobileBottomNav.tsx index f28b892..4af17e9 100644 --- a/src/components/MobileBottomNav.tsx +++ b/src/components/MobileBottomNav.tsx @@ -2,7 +2,7 @@ 'use client'; -import { Cat, Clover, Film, FolderOpen, Globe, Home, Star, Tv, Users } from 'lucide-react'; +import { Cat, Clover, Film, FolderOpen, Globe, Home, Star, Tv, TvMinimalPlay, Users } from 'lucide-react'; import Link from 'next/link'; import { usePathname, useSearchParams } from 'next/navigation'; import { useEffect, useState } from 'react'; @@ -51,7 +51,7 @@ const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => { href: '/douban?type=show', }, { - icon: Tv, + icon: TvMinimalPlay, label: '电视直播', href: '/live', }, @@ -89,7 +89,7 @@ const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => { href: '/douban?type=show', }, { - icon: Tv, + icon: TvMinimalPlay, label: '电视直播', href: '/live', }, diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 4dea967..6be1c20 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -2,7 +2,7 @@ 'use client'; -import { Cat, Clover, Film, FolderOpen, Globe, Home, Menu, Search, Star, Tv, Users } from 'lucide-react'; +import { Cat, Clover, Film, FolderOpen, Globe, Home, Menu, Search, Star, Tv, TvMinimalPlay, Users } from 'lucide-react'; import Link from 'next/link'; import { usePathname, useSearchParams } from 'next/navigation'; import { @@ -143,7 +143,7 @@ const Sidebar = ({ onToggle, activePath = '/' }: SidebarProps) => { href: '/douban?type=show', }, { - icon: Tv, + icon: TvMinimalPlay, label: '电视直播', href: '/live', }, @@ -180,7 +180,7 @@ const Sidebar = ({ onToggle, activePath = '/' }: SidebarProps) => { href: '/douban?type=show', }, { - icon: Tv, + icon: TvMinimalPlay, label: '电视直播', href: '/live', },