From fd4d08058895d41e8751acfc9bdce57f3cc08c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A2=E8=B6=8A?= <552369664@qq.com> Date: Mon, 19 Aug 2024 17:31:57 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=8A=9F=E8=83=BD=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E3=80=91=E4=BF=AE=E5=A4=8D=E8=AE=BE=E7=BD=AE=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E9=87=8C=E6=9A=97=E9=BB=91=E4=B8=BB=E9=A2=98=E7=9A=84=E6=8C=87?= =?UTF-8?q?=E5=90=91=E7=8A=B6=E6=80=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/ThemeSwitch/src/ThemeSwitch.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue b/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue index 39a8cfd7d..12460bf62 100644 --- a/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue +++ b/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue @@ -9,9 +9,9 @@ const { getPrefixCls } = useDesign() const prefixCls = getPrefixCls('theme-switch') -const Sun = useIcon({ icon: 'emojione-monotone:sun', color: '#fde047' }) +const Sun = useIcon({ icon: 'emojione-monotone:crescent-moon', color: '#fde047' }) -const CrescentMoon = useIcon({ icon: 'emojione-monotone:crescent-moon', color: '#fde047' }) +const CrescentMoon = useIcon({ icon: 'emojione-monotone:sun', color: '#fde047' }) const appStore = useAppStore() -- Gitee