From 6881e9f0e626f5e3e47c1d9767b5c2070b681152 Mon Sep 17 00:00:00 2001 From: xianyi Date: Wed, 3 Dec 2025 10:43:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E9=A2=84=E7=BA=A6=E4=B8=AD?= =?UTF-8?q?=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/Sidebar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx index 53090a5..a60187f 100644 --- a/src/components/layout/Sidebar.tsx +++ b/src/components/layout/Sidebar.tsx @@ -12,13 +12,13 @@ interface SidebarProps { const IconHome = () => 🏠; const IconHospital = () => 🏥; -const IconCalendar = () => 📅; +// const IconCalendar = () => 📅; const IconSupport = () => 💬; const NAV_ITEMS = [ { key: 'home', icon: IconHome, label: '首页' }, { key: 'exam', icon: IconHospital, label: '体检中心' }, - { key: 'booking', icon: IconCalendar, label: '预约中心' }, + // { key: 'booking', icon: IconCalendar, label: '预约中心' }, { key: 'support', icon: IconSupport, label: '客服咨询' }, ] as const;