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', },