All files / src/icons RotateClockwise.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    1x 1x   1x                                             1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const RotateClockwise = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function RotateClockwise(props, ref) {
  return (
    <Icon {...props} name="RotateClockwise">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M18.0876 5.36737C16.3768 3.96483 14.2549 3.38709 12.3157 3.38709C7.1708 3.38709 3 7.55789 3 12.7028C3 17.8478 7.1708 22.0186 12.3157 22.0186C14.9798 22.0186 17.3843 20.8987 19.0806 19.1075L19.2537 18.9247L17.4256 17.1935L17.2525 17.3763C16.0119 18.6862 14.26 19.5008 12.3157 19.5008C8.56132 19.5008 5.51777 16.4572 5.51777 12.7028C5.51777 8.94841 8.56132 5.90486 12.3157 5.90486C13.8278 5.90486 15.3832 6.36285 16.5906 7.40025L13.2471 7.70925L13.4788 10.2163L21 9.52125L20.3049 2L17.7978 2.23169L18.0876 5.36737Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
RotateClockwise.displayName = 'RotateClockwise'
 
export default RotateClockwise