You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

52 lines
2.1 KiB

  1. // material-ui
  2. // import { useTheme } from '@mui/material/styles';
  3. /**
  4. * if you want to use image instead of <svg> uncomment following.
  5. *
  6. * import logoDark from 'assets/images/logo-dark.svg';
  7. * import logo from 'assets/images/logo.svg';
  8. *
  9. */
  10. // ==============================|| LOGO SVG ||============================== //
  11. const AdminLogo = () => {
  12. // const theme = useTheme();
  13. return (
  14. /**
  15. * if you want to use image instead of svg uncomment following, and comment out <svg> element.
  16. *
  17. * <img src={logo} alt="Mantis" width="100" />
  18. *
  19. */
  20. <>
  21. <svg width="90" height="45" viewBox="18 0 10 35" fill="none" xmlns="http://www.w3.org/2000/svg">
  22. <defs>
  23. <clipPath id="clipPath22">
  24. <path d="m0 256h213v-256h-213z"/>
  25. </clipPath>
  26. </defs>
  27. <g transform="translate(-31.999 -25.836)">
  28. <g transform="matrix(.35278 0 0 -.35278 46.979 25.836)">
  29. <path d="m0 0h16.273v-37.417l17.85-0.035v-12.864h-34.123z" fill="#00a650"/>
  30. </g>
  31. <g transform="matrix(.35278 0 0 -.35278 16.798 99.848)">
  32. <g clipPath="url(#clipPath22)">
  33. <g transform="translate(82.049 183.46)">
  34. <path d="m0 0c-17.536-0.633-27.516-14.176-27.516-28.318 0-14.143 9.241-28.019 27.563-28.071 3.447-9e-3 8.679 1.279 21.255 17.378l-17.808 0.07v10.335l34.132 0.061v-35.705l-10.467 3.577 0.045 12.858c-12.924-19.307-24.442-19.361-26.895-19.378-23.677-0.157-39.268 17.825-39.268 38.884s14.944 37.674 38.959 38.589z" fill="#1c63b7"/>
  35. </g>
  36. <g transform="translate(119.64 176.52)">
  37. <path d="m0 0-10.391 0.041v11.372c3.151 1.943 6.524 3.573 10.424 4.515 3.633 0.879 7.526 1.321 11.567 1.321 24.407 0 39.006-17.548 39.006-38.608s-14.633-39.843-39.006-38.608c-2.765 0.14-3.93 0.531-7.946 1.652l0.055 9.924c3.341-0.628 3.344-0.529 7.891-1.047 17.298-1.971 27.561 13.927 27.561 28.069 0 14.143-10.11 28.09-27.561 28.09-4.162 0-8.175-0.816-11.567-2.433l-0.033-4.288" fill="#1c63b7"/>
  38. </g>
  39. </g>
  40. </g>
  41. </g>
  42. </svg>
  43. </>
  44. );
  45. };
  46. export default AdminLogo;