All files / src/icons RotateCounterClockwise.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 RotateCounterClockwise = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function RotateCounterClockwise(props, ref) {
  return (
    <Icon {...props} name="RotateCounterClockwise">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M5.91238 5.36737C7.62321 3.96483 9.74513 3.38709 11.6843 3.38709C16.8292 3.38709 21 7.55789 21 12.7028C21 17.8478 16.8292 22.0186 11.6843 22.0186C9.02023 22.0186 6.61572 20.8987 4.91944 19.1075L4.74632 18.9247L6.57439 17.1935L6.74752 17.3763C7.98811 18.6862 9.74002 19.5008 11.6843 19.5008C15.4387 19.5008 18.4822 16.4572 18.4822 12.7028C18.4822 8.94841 15.4387 5.90486 11.6843 5.90486C10.1722 5.90486 8.61681 6.36285 7.40937 7.40025L10.7529 7.70925L10.5212 10.2163L3 9.52125L3.69508 2L6.20216 2.23169L5.91238 5.36737Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
RotateCounterClockwise.displayName = 'RotateCounterClockwise'
 
export default RotateCounterClockwise