source: src/assets/icons/plan-free-icon.tsx

main
Last change on this file 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 { memo } from 'react';
2// @mui
3import { useTheme } from '@mui/material/styles';
4import Box, { BoxProps } from '@mui/material/Box';
5
6// ----------------------------------------------------------------------
7
8function PlanFreeIcon({ ...other }: BoxProps) {
9 const theme = useTheme();
10
11 const PRIMARY_MAIN = theme.palette.primary.main;
12
13 const PRIMARY_DARK = theme.palette.primary.dark;
14
15 const PRIMARY_DARKER = theme.palette.primary.darker;
16
17 return (
18 <Box
19 component="svg"
20 width="100%"
21 height="100%"
22 viewBox="0 0 80 80"
23 xmlns="http://www.w3.org/2000/svg"
24 {...other}
25 >
26 <g transform="translate(9.167 20)">
27 <path fill={PRIMARY_DARK} d="M53.333 17.5H61.666V25H53.333z" />
28
29 <path
30 fill={PRIMARY_DARKER}
31 d="M.935 20.489l25.028-12.46a5.044 5.044 0 014.52.012L60.74 23.307a1.69 1.69 0 01.015 3.007l-25.338 13.12a5.044 5.044 0 01-4.694-.028L.893 23.49a1.69 1.69 0 01.042-3.001z"
32 />
33
34 <path
35 fill={PRIMARY_DARK}
36 d="M32.5 34.268v4.193a1.134 1.134 0 01-1.566 1.049l-.1-.047v-7.551a2.498 2.498 0 011.666 2.356zM.833 15.962l30 15.95v7.55l-30-15.952v-.02l-.115-.066A1.571 1.571 0 010 22.104v-7.937l.833 1.795z"
37 />
38
39 <path
40 fill={PRIMARY_MAIN}
41 fillRule="nonzero"
42 d="M.935 12.989L25.963.529a5.044 5.044 0 014.52.012L60.74 15.807a1.69 1.69 0 01.015 3.007l-25.338 13.12a5.044 5.044 0 01-4.694-.028L.893 15.99a1.69 1.69 0 01.042-3.001z"
43 />
44 </g>
45 </Box>
46 );
47}
48
49export default memo(PlanFreeIcon);
Note: See TracBrowser for help on using the repository browser.