iconCode.tsx 707 B

1234567891011121314151617
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconCode = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path d="M10.2,13.79c-.19,0-.38-.07-.53-.22-.29-.29-.29-.77,0-1.06l4.52-4.52-4.52-4.52c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l5.05,5.05c.29.29.29.77,0,1.06l-5.05,5.05c-.15.15-.34.22-.53.22Z" />
  8. <path d="M5.8,13.8c-.19,0-.38-.07-.53-.22L.22,8.53c-.29-.29-.29-.77,0-1.06L5.27,2.42c.29-.29.77-.29,1.06,0s.29.77,0,1.06L1.81,8l4.52,4.52c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z" />
  9. </SvgIcon>
  10. );
  11. });
  12. IconCode.displayName = 'IconCode';
  13. export {IconCode};