mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-06-13 03:31:20 +00:00
Invert icons
This commit is contained in:
parent
ff927e017b
commit
2b4629ee51
@ -16,8 +16,8 @@ const ThemeSelector = ({ style }) => {
|
||||
...style,
|
||||
}}
|
||||
>
|
||||
{themeMode === "dark" ? <LightModeIcon /> : <NightlightIcon />}
|
||||
<Switch checked={themeMode === "dark"} onChange={toggleTheme} />
|
||||
{themeMode === "light" ? <LightModeIcon /> : <NightlightIcon />}
|
||||
<Switch checked={themeMode === "light"} onChange={toggleTheme} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user