All files / src/icons Recycle.tsx

83.33% Statements 5/6
100% Branches 0/0
0% Functions 0/1
83.33% Lines 5/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40    1x 1x   1x                                                             1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Recycle = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Recycle(props, ref) {
  return (
    <Icon {...props} name="Recycle">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M9.00391 6.99286L10.7318 4H13.2722L17.1023 10.634L15.3703 11.634L12.002 5.79999L10.736 7.99286L9.00391 6.99286Z"
          fill="currentColor"
        />
        <path
          d="M8.86416 11.16L5.49591 16.994H8.02802V18.994L4.57171 18.994L3.30176 16.7943L7.13211 10.16L8.86416 11.16Z"
          fill="currentColor"
        />
        <path
          d="M20.7227 16.8033L18.9945 13.81L17.2624 14.81L18.5285 17.0029L11.792 17.0029V19.0029L19.4527 19.0029L20.7227 16.8033Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Recycle.displayName = 'Recycle'
 
export default Recycle