All files / src/icons ArrowsCycleClockwise.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    1x 1x   1x                                                 1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const ArrowsCycleClockwise = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ArrowsCycleClockwise(props, ref) {
  return (
    <Icon {...props} name="ArrowsCycleClockwise">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M21.0707 1.75342L21.0604 9.25341L13.5604 9.24316L13.5638 6.74317L16.898 6.74772C15.8005 5.61018 14.3053 5.01319 12.8104 4.87298C9.09882 4.52485 5.80773 7.25151 5.4596 10.9631C5.4272 11.3086 5.42143 11.6503 5.44056 11.9861L5.45562 12.2503H2.94896L2.93845 12.0113C2.91989 11.5896 2.93001 11.1616 2.97053 10.7297C3.44759 5.64337 7.9576 1.90684 13.0439 2.38391C14.9609 2.56371 17.0051 3.33162 18.5664 4.87681L18.5707 1.75L21.0707 1.75342ZM2.9292 22.2473L2.93944 14.7473L10.4394 14.7575L10.436 17.2575L7.1019 17.253C8.19938 18.3905 9.69457 18.9875 11.1894 19.1277C14.9011 19.4758 18.1921 16.7492 18.5403 13.0375C18.5727 12.6921 18.5784 12.3504 18.5593 12.0146L18.5443 11.7503H21.0509L21.0614 11.9894C21.08 12.4111 21.0699 12.839 21.0293 13.271C20.5523 18.3573 16.0423 22.0938 10.956 21.6168C9.03893 21.437 6.99476 20.6691 5.43347 19.1239L5.4292 22.2507L2.9292 22.2473Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
ArrowsCycleClockwise.displayName = 'ArrowsCycleClockwise'
 
export default ArrowsCycleClockwise