iconLinear.tsx 652 B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconLinear = React.forwardRef(function IconLinear(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <path d="M.1,9.35,6.65,15.9A8,8,0,0,1,.1,9.35Z" />
  11. <path d="M0,7.57,8.43,16a8.7,8.7,0,0,0,1.46-.21L.21,6.11A8.7,8.7,0,0,0,0,7.57Z" />
  12. <path d="M.63,4.85,11.15,15.37a8.86,8.86,0,0,0,1.1-.58l-11-11A8.86,8.86,0,0,0,.63,4.85Z" />
  13. <path d="M1.92,2.79A8,8,0,1,1,13.21,14.08Z" />
  14. </SvgIcon>
  15. );
  16. });
  17. IconLinear.displayName = 'IconLinear';
  18. export {IconLinear};