iconCode.tsx 672 B

123456789101112131415
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconCode = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M3.82 11.8a.79.79 0 0 1-.53-.22l-3-3.05a.74.74 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 1.01L1.84 8l2.51 2.52a.75.75 0 0 1-.53 1.28Zm8.36 0a.75.75 0 0 1-.53-1.28L14.16 8l-2.51-2.52a.75.75 0 1 1 1.06-1.06l3 3.05a.743.743 0 0 1 0 1.06l-3 3.05a.79.79 0 0 1-.53.22Zm-6.49 1.95A.75.75 0 0 1 5 12.69l4.62-10a.75.75 0 0 1 1-.36.74.74 0 0 1 .36 1l-4.62 10a.76.76 0 0 1-.67.42Z" />
  7. </SvgIcon>
  8. );
  9. });
  10. IconCode.displayName = 'IconCode';
  11. export {IconCode};