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()