All files / src/icons Arc.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    1x 1x   1x                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Arc = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Arc(props, ref) {
  return (
    <Icon {...props} name="Arc">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M20 5.125C17.9458 5.125 16.0156 5.51458 14.2094 6.29375C12.4031 7.07292 10.8271 8.13542 9.48125 9.48125C8.13542 10.8271 7.07292 12.4031 6.29375 14.2094C5.51458 16.0156 5.125 17.9458 5.125 20H3C3 17.6625 3.44714 15.4622 4.34141 13.3992C5.23568 11.3362 6.45312 9.53438 7.99375 7.99375C9.53437 6.45313 11.3362 5.23568 13.3992 4.34141C15.4622 3.44714 17.6625 3 20 3V5.125Z"
          fill="currentColor"
        />
        <path
          d="M20 5.125C17.9458 5.125 16.0156 5.51458 14.2094 6.29375L13.873 6.44336C12.2068 7.20701 10.7429 8.21962 9.48125 9.48125L9.23242 9.73633C8.00397 11.0249 7.02421 12.5161 6.29375 14.2094L6.15234 14.5498C5.46759 16.2576 5.125 18.0743 5.125 20H3C3 17.8088 3.39286 15.7381 4.17871 13.7881L4.34141 13.3992C5.17977 11.4652 6.30256 9.76106 7.70898 8.28613L7.99375 7.99375C9.43814 6.54936 11.1121 5.38896 13.0156 4.5127L13.3992 4.34141C15.4622 3.44714 17.6625 3 20 3V5.125Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Arc.displayName = 'Arc'
 
export default Arc