File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ MenuItem,
1414Typography ,
1515} from '@mui/material' ;
1616import MenuIcon from '@mui/icons-material/Menu' ;
17- import WbSunnyIcon from '@mui/icons-material/WbSunny ' ;
18- import NightlightIcon from '@mui/icons-material/Nightlight ' ;
17+ import DarkModeIcon from '@mui/icons-material/DarkMode ' ;
18+ import LightModeIcon from '@mui/icons-material/LightMode ' ;
1919import TranslateIcon from '@mui/icons-material/Translate' ;
2020import CloseIcon from '@mui/icons-material/Close' ;
2121import { useTheme } from '@mui/material/styles' ;
@@ -66,7 +66,7 @@ const changeLanguage = async (lang: string) => {
6666 }
6767} ;
6868
69- const ThemeIcon = darkMode ? WbSunnyIcon : NightlightIcon ;
69+ const ThemeIcon = darkMode ? DarkModeIcon : LightModeIcon ;
7070
7171const modalVariants = {
7272 hidden : { opacity : 0 , scale : 0.8 } ,
You can’t perform that action at this time.
0 commit comments