iconProfiling.tsx 663 B

123456789101112131415
  1. import {forwardRef} from 'react';
  2. import {SvgIcon, SVGIconProps} from './svgIcon';
  3. const IconProfiling = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M15.25,0H.75C.33,0,0,.34,0,.75V5.59c0,.41,.34,.75,.75,.75h1.49v4.09c0,.41,.34,.75,.75,.75h1.73v4.09c0,.41,.34,.75,.75,.75h5.06c.41,0,.75-.34,.75-.75v-4.09h1.73c.41,0,.75-.34,.75-.75V6.34h1.49c.41,0,.75-.34,.75-.75V.75c0-.41-.34-.75-.75-.75Zm-5.47,14.52h-3.56v-3.34h3.56v3.34Zm2.48-4.84H3.74v-3.34H12.25v3.34Zm2.24-4.84H1.5V1.5H14.5v3.34Z" />
  7. </SvgIcon>
  8. );
  9. });
  10. IconProfiling.displayName = 'IconProfiling';
  11. export {IconProfiling};