diff --git a/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue b/src/layout/components/ThemeSwitch/src/ThemeSwitch.vue index 39a8cfd7d5639a9c4ba95fa033b44ca1742114e8..12460bf62045165c95d6b48e63c9a86bea411efc 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()