summaryrefslogtreecommitdiff
path: root/src/components/Desktop.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Desktop.tsx')
-rw-r--r--src/components/Desktop.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Desktop.tsx b/src/components/Desktop.tsx
index 72b583d..13de4ee 100644
--- a/src/components/Desktop.tsx
+++ b/src/components/Desktop.tsx
@@ -20,7 +20,7 @@ function Desktop() {
</Button>
))}
<IconButton color="inherit" onClick={toggleColorMode}>
- {theme.palette.mode === 'dark' ? <DarkModeIcon /> : <LightModeIcon />}
+ {theme.palette.mode === 'dark' ? <LightModeIcon /> : <DarkModeIcon />}
</IconButton>
</div>
);