source: src/layouts/_common/settings-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 
1import { m } from 'framer-motion';
2// @mui
3import { Theme, SxProps } from '@mui/material/styles';
4import Box from '@mui/material/Box';
5import IconButton from '@mui/material/IconButton';
6import Badge, { badgeClasses } from '@mui/material/Badge';
7// components
8import Iconify from 'src/components/iconify';
9import { varHover } from 'src/components/animate';
10import { useSettingsContext } from 'src/components/settings';
11
12// ----------------------------------------------------------------------
13
14type Props = {
15 sx?: SxProps<Theme>;
16};
17
18export default function SettingsButton({ sx }: Props) {
19 const settings = useSettingsContext();
20
21 return (
22 <Badge
23 color="error"
24 variant="dot"
25 invisible={!settings.canReset}
26 sx={{
27 [`& .${badgeClasses.badge}`]: {
28 top: 8,
29 right: 8,
30 },
31 ...sx,
32 }}
33 >
34 <Box
35 component={m.div}
36 animate={{
37 rotate: [0, settings.open ? 0 : 360],
38 }}
39 transition={{
40 duration: 12,
41 ease: 'linear',
42 repeat: Infinity,
43 }}
44 >
45 <IconButton
46 component={m.button}
47 whileTap="tap"
48 whileHover="hover"
49 variants={varHover(1.05)}
50 aria-label="settings"
51 onClick={settings.onToggle}
52 sx={{
53 width: 40,
54 height: 40,
55 }}
56 >
57 <Iconify icon="solar:settings-bold-duotone" width={24} />
58 </IconButton>
59 </Box>
60 </Badge>
61 );
62}
Note: See TracBrowser for help on using the repository browser.