[5d6f37a] | 1 | import { memo } from 'react';
|
---|
| 2 | // @mui
|
---|
| 3 | import { useTheme } from '@mui/material/styles';
|
---|
| 4 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
| 5 |
|
---|
| 6 | // ----------------------------------------------------------------------
|
---|
| 7 |
|
---|
| 8 | function PlanStarterIcon({ ...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(0 -5)">
|
---|
| 27 | <g transform="translate(0 9.15)">
|
---|
| 28 | <g transform="translate(9.167 19.963)">
|
---|
| 29 | <path fill={PRIMARY_DARK} d="M53.333 17.467H61.666V24.953H53.333z" />
|
---|
| 30 |
|
---|
| 31 | <path
|
---|
| 32 | fill={PRIMARY_DARKER}
|
---|
| 33 | d="M.935 20.45L25.963 8.015a5.052 5.052 0 014.52.012L60.74 23.263a1.685 1.685 0 01.015 3.001L35.417 39.361a5.052 5.052 0 01-4.694-.029L.893 23.446a1.685 1.685 0 01.042-2.995z"
|
---|
| 34 | />
|
---|
| 35 |
|
---|
| 36 | <path
|
---|
| 37 | fill={PRIMARY_DARK}
|
---|
| 38 | d="M32.5 34.204v4.185a1.133 1.133 0 01-1.566 1.047l-.1-.047v-7.537a2.494 2.494 0 011.666 2.352zM.833 15.932l30 15.92v7.537l-30-15.923v-.02l-.115-.066A1.568 1.568 0 010 22.063V14.14l.833 1.792z"
|
---|
| 39 | />
|
---|
| 40 |
|
---|
| 41 | <path
|
---|
| 42 | fill={PRIMARY_MAIN}
|
---|
| 43 | fillRule="nonzero"
|
---|
| 44 | d="M.935 12.965L25.963.528a5.052 5.052 0 014.52.012L60.74 15.777a1.685 1.685 0 01.015 3.001L35.417 31.875a5.052 5.052 0 01-4.694-.029L.893 15.96a1.685 1.685 0 01.042-2.995z"
|
---|
| 45 | />
|
---|
| 46 | </g>
|
---|
| 47 | </g>
|
---|
| 48 |
|
---|
| 49 | <g transform="translate(9.167 19.963)">
|
---|
| 50 | <path fill={PRIMARY_DARK} d="M53.333 17.467H61.666V24.953H53.333z" />
|
---|
| 51 |
|
---|
| 52 | <path
|
---|
| 53 | fill={PRIMARY_DARKER}
|
---|
| 54 | d="M.935 20.45L25.963 8.015a5.052 5.052 0 014.52.012L60.74 23.263a1.685 1.685 0 01.015 3.001L35.417 39.361a5.052 5.052 0 01-4.694-.029L.893 23.446a1.685 1.685 0 01.042-2.995z"
|
---|
| 55 | />
|
---|
| 56 |
|
---|
| 57 | <path
|
---|
| 58 | fill={PRIMARY_DARK}
|
---|
| 59 | d="M32.5 34.204v4.185a1.133 1.133 0 01-1.566 1.047l-.1-.047v-7.537a2.494 2.494 0 011.666 2.352zM.833 15.932l30 15.92v7.537l-30-15.923v-.02l-.115-.066A1.568 1.568 0 010 22.063V14.14l.833 1.792z"
|
---|
| 60 | />
|
---|
| 61 |
|
---|
| 62 | <path
|
---|
| 63 | fill={PRIMARY_MAIN}
|
---|
| 64 | fillRule="nonzero"
|
---|
| 65 | d="M.935 12.965L25.963.528a5.052 5.052 0 014.52.012L60.74 15.777a1.685 1.685 0 01.015 3.001L35.417 31.875a5.052 5.052 0 01-4.694-.029L.893 15.96a1.685 1.685 0 01.042-2.995z"
|
---|
| 66 | />
|
---|
| 67 | </g>
|
---|
| 68 | </g>
|
---|
| 69 | </Box>
|
---|
| 70 | );
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | export default memo(PlanStarterIcon);
|
---|