From 2b4629ee51737158392ca1be6253c5012ef34b29 Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Fri, 4 Apr 2025 14:04:32 +0200 Subject: [PATCH] Invert icons --- src/components/Theme/ThemeSelector.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Theme/ThemeSelector.tsx b/src/components/Theme/ThemeSelector.tsx index b4ec35a..6324b01 100644 --- a/src/components/Theme/ThemeSelector.tsx +++ b/src/components/Theme/ThemeSelector.tsx @@ -16,8 +16,8 @@ const ThemeSelector = ({ style }) => { ...style, }} > - {themeMode === "dark" ? : } - + {themeMode === "light" ? : } + ); };