@@ -15,6 +15,10 @@ import Popover from '@mui/material/Popover';
15
15
import Toolbar from '@mui/material/Toolbar' ;
16
16
import Tooltip from '@mui/material/Tooltip' ;
17
17
import Typography from '@mui/material/Typography' ;
18
+ import { alpha , useTheme } from '@mui/material/styles' ;
19
+ import { deepPurple } from '@mui/material/colors' ;
20
+
21
+ // Material Icons
18
22
import DarkModeIcon from '@mui/icons-material/DarkMode' ;
19
23
import DashboardIcon from '@mui/icons-material/DashboardOutlined' ;
20
24
import EmailIcon from '@mui/icons-material/EmailOutlined' ;
@@ -23,18 +27,16 @@ import LightModeIcon from '@mui/icons-material/LightMode';
23
27
import MenuIcon from '@mui/icons-material/Menu' ;
24
28
import SettingsIcon from '@mui/icons-material/Settings' ;
25
29
import UserIcon from '@mui/icons-material/Person' ;
26
- import { alpha , useTheme } from '@mui/material/styles' ;
27
- import { deepPurple } from '@mui/material/colors' ;
28
-
29
- import ColorModeContext from '../components/ColorModeContext' ;
30
- import CustomButton from '../components/CustomButton' ;
31
30
32
31
// Font Awesome Icon
33
32
import { library } from '@fortawesome/fontawesome-svg-core' ;
34
33
import { faCoins } from '@fortawesome/free-solid-svg-icons' ;
35
34
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' ;
36
35
library . add ( faCoins ) ;
37
36
37
+ import ColorModeContext from '../components/ColorModeContext' ;
38
+ import CustomButton from '../components/CustomButton' ;
39
+
38
40
const Header = ( { onSidebarOpen } ) => {
39
41
const [ open , setOpen ] = useState ( false ) ;
40
42
const theme = useTheme ( ) ;
0 commit comments