source: src/layouts/_common/nav-toggle-button.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.5 KB
Line 
1// @mui
2import { useTheme } from '@mui/material/styles';
3import IconButton, { IconButtonProps } from '@mui/material/IconButton';
4// hooks
5import { useResponsive } from 'src/hooks/use-responsive';
6// theme
7import { bgBlur } from 'src/theme/css';
8// components
9import Iconify from 'src/components/iconify';
10import { useSettingsContext } from 'src/components/settings';
11//
12import { NAV } from '../config-layout';
13
14// ----------------------------------------------------------------------
15
16export default function NavToggleButton({ sx, ...other }: IconButtonProps) {
17 const theme = useTheme();
18
19 const settings = useSettingsContext();
20
21 const lgUp = useResponsive('up', 'lg');
22
23 if (!lgUp) {
24 return null;
25 }
26
27 return (
28 <IconButton
29 size="small"
30 onClick={() =>
31 settings.onUpdate('themeLayout', settings.themeLayout === 'vertical' ? 'mini' : 'vertical')
32 }
33 sx={{
34 p: 0.5,
35 top: 32,
36 position: 'fixed',
37 left: NAV.W_VERTICAL - 12,
38 zIndex: theme.zIndex.appBar + 1,
39 border: `dashed 1px ${theme.palette.divider}`,
40 ...bgBlur({ opacity: 0.48, color: theme.palette.background.default }),
41 '&:hover': {
42 bgcolor: 'background.default',
43 },
44 ...sx,
45 }}
46 {...other}
47 >
48 <Iconify
49 width={16}
50 icon={
51 settings.themeLayout === 'vertical'
52 ? 'eva:arrow-ios-back-fill'
53 : 'eva:arrow-ios-forward-fill'
54 }
55 />
56 </IconButton>
57 );
58}
Note: See TracBrowser for help on using the repository browser.