1 | import { forwardRef } from 'react';
|
---|
2 | // @mui
|
---|
3 | // import { useTheme } from '@mui/material/styles';
|
---|
4 | import Link from '@mui/material/Link';
|
---|
5 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
6 | // routes
|
---|
7 | import { RouterLink } from 'src/routes/components';
|
---|
8 |
|
---|
9 | // ----------------------------------------------------------------------
|
---|
10 |
|
---|
11 | export interface LogoProps extends BoxProps {
|
---|
12 | disabledLink?: boolean;
|
---|
13 | }
|
---|
14 |
|
---|
15 | const Logo = forwardRef<HTMLDivElement, LogoProps>(
|
---|
16 | ({ disabledLink = false, sx, ...other }, ref) => {
|
---|
17 | // const theme = useTheme();
|
---|
18 |
|
---|
19 | // const PRIMARY_LIGHT = theme.palette.primary.light;
|
---|
20 |
|
---|
21 | // const PRIMARY_MAIN = theme.palette.primary.main;
|
---|
22 |
|
---|
23 | // const PRIMARY_DARK = theme.palette.primary.dark;
|
---|
24 |
|
---|
25 | // OR using local (public folder)
|
---|
26 | // -------------------------------------------------------
|
---|
27 | const logo = (
|
---|
28 | <Box
|
---|
29 | component="img"
|
---|
30 | src="/logo/logo_single.svg"
|
---|
31 | sx={{ width: 40, height: 40, cursor: 'pointer', ...sx }}
|
---|
32 | />
|
---|
33 | );
|
---|
34 |
|
---|
35 | // const logo = (
|
---|
36 | // <Box
|
---|
37 | // ref={ref}
|
---|
38 | // component="div"
|
---|
39 | // sx={{
|
---|
40 | // width: 40,
|
---|
41 | // height: 40,
|
---|
42 | // display: 'inline-flex',
|
---|
43 | // ...sx,
|
---|
44 | // }}
|
---|
45 | // {...other}
|
---|
46 | // >
|
---|
47 | // <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 512 512">
|
---|
48 | // <defs>
|
---|
49 | // <linearGradient id="BG1" x1="100%" x2="50%" y1="9.946%" y2="50%">
|
---|
50 | // <stop offset="0%" stopColor={PRIMARY_DARK} />
|
---|
51 | // <stop offset="100%" stopColor={PRIMARY_MAIN} />
|
---|
52 | // </linearGradient>
|
---|
53 |
|
---|
54 | // <linearGradient id="BG2" x1="50%" x2="50%" y1="0%" y2="100%">
|
---|
55 | // <stop offset="0%" stopColor={PRIMARY_LIGHT} />
|
---|
56 | // <stop offset="100%" stopColor={PRIMARY_MAIN} />
|
---|
57 | // </linearGradient>
|
---|
58 |
|
---|
59 | // <linearGradient id="BG3" x1="50%" x2="50%" y1="0%" y2="100%">
|
---|
60 | // <stop offset="0%" stopColor={PRIMARY_LIGHT} />
|
---|
61 | // <stop offset="100%" stopColor={PRIMARY_MAIN} />
|
---|
62 | // </linearGradient>
|
---|
63 | // </defs>
|
---|
64 |
|
---|
65 | // <g fill={PRIMARY_MAIN} fillRule="evenodd" stroke="none" strokeWidth="1">
|
---|
66 | // <path
|
---|
67 | // fill="url(#BG1)"
|
---|
68 | // d="M183.168 285.573l-2.918 5.298-2.973 5.363-2.846 5.095-2.274 4.043-2.186 3.857-2.506 4.383-1.6 2.774-2.294 3.939-1.099 1.869-1.416 2.388-1.025 1.713-1.317 2.18-.95 1.558-1.514 2.447-.866 1.38-.833 1.312-.802 1.246-.77 1.18-.739 1.111-.935 1.38-.664.956-.425.6-.41.572-.59.8-.376.497-.537.69-.171.214c-10.76 13.37-22.496 23.493-36.93 29.334-30.346 14.262-68.07 14.929-97.202-2.704l72.347-124.682 2.8-1.72c49.257-29.326 73.08 1.117 94.02 40.927z"
|
---|
69 | // />
|
---|
70 | // <path
|
---|
71 | // fill="url(#BG2)"
|
---|
72 | // d="M444.31 229.726c-46.27-80.956-94.1-157.228-149.043-45.344-7.516 14.384-12.995 42.337-25.267 42.337v-.142c-12.272 0-17.75-27.953-25.265-42.337C189.79 72.356 141.96 148.628 95.69 229.584c-3.483 6.106-6.828 11.932-9.69 16.996 106.038-67.127 97.11 135.667 184 137.278V384c86.891-1.611 77.962-204.405 184-137.28-2.86-5.062-6.206-10.888-9.69-16.994"
|
---|
73 | // />
|
---|
74 | // <path
|
---|
75 | // fill="url(#BG3)"
|
---|
76 | // d="M450 384c26.509 0 48-21.491 48-48s-21.491-48-48-48-48 21.491-48 48 21.491 48 48 48"
|
---|
77 | // />
|
---|
78 | // </g>
|
---|
79 | // </svg>
|
---|
80 | // </Box>
|
---|
81 | // );
|
---|
82 |
|
---|
83 | if (disabledLink) {
|
---|
84 | return logo;
|
---|
85 | }
|
---|
86 |
|
---|
87 | return (
|
---|
88 | <Link component={RouterLink} href="/" sx={{ display: 'contents' }}>
|
---|
89 | {logo}
|
---|
90 | </Link>
|
---|
91 | );
|
---|
92 | }
|
---|
93 | );
|
---|
94 |
|
---|
95 | export default Logo;
|
---|