iconSeer.tsx 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconSeer = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref} viewBox="0 0 30 30">
  7. <defs>
  8. <style>
  9. {`.cls-1 {
  10. fill: none;
  11. stroke: currentColor;
  12. stroke-linecap: round;
  13. stroke-linejoin: round;
  14. stroke-width: 2px;
  15. }`}
  16. </style>
  17. </defs>
  18. <path
  19. className="cls-1"
  20. d="M14.0407,3.1458L3.5742,17.0376c-.2989.3967-.2327.9584.1501,1.2748l10.4917,8.6705c.3436.284.8405.2838,1.1839-.0005l10.4717-8.6691c.3827-.3169.4483-.8788.1488-1.2753L15.5235,3.1448c-.3719-.4922-1.1115-.4917-1.4828.001Z"
  21. />
  22. <path
  23. className="cls-1"
  24. d="M14.1483,12.3135l-5.1122,4.0552c-.3332.2643-.314.6812.0426.9278l5.1121,3.5339c.3337.2307.8482.2312,1.1828.0012l5.1412-3.534c.359-.2468.3782-.6657.0427-.9303l-5.1411-4.0551c-.3449-.272-.9243-.2714-1.2682.0013Z"
  25. />
  26. <line className="cls-1" x1="14.7558" y1="15.9343" x2="14.7558" y2="17.2053" />
  27. </SvgIcon>
  28. );
  29. });
  30. IconSeer.displayName = 'IconSeer';
  31. export {IconSeer};