Fixed toggle icon being missing on light theme

This commit is contained in:
Klotske
2023-01-03 13:11:11 +03:00
parent e835e4424b
commit 20b313ddcf
@@ -14,7 +14,7 @@ export function ColorModeIconToggle(props) {
onClick={toggleColorMode}
>
{colorMode === "light" ? (
<CiDark className="h-5 w-5 stroke-zinc-900 dark:hidden" />
<CiDark className="h-5 w-5 stroke-zinc-900" />
) : (
<CiLight className="h-5 w-5 stroke-white" />
)}