iconCode.tsx 732 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconCode = React.forwardRef(function IconCode(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <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" />
  11. </SvgIcon>
  12. );
  13. });
  14. IconCode.displayName = 'IconCode';
  15. export {IconCode};