All files / src/icons PathSegment.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 PathSegment = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PathSegment(props, ref) {
  return (
    <Icon {...props} name="PathSegment">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C16.8971 10 16.3302 9.8466 15.835 9.57812L9.57812 15.835C9.8466 16.3302 10 16.8971 10 17.5C10 19.433 8.433 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C7.10247 14 7.66906 14.1528 8.16406 14.4209L14.4209 8.16406C14.1528 7.66906 14 7.10247 14 6.5C14 4.567 15.567 3 17.5 3Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
PathSegment.displayName = 'PathSegment'
 
export default PathSegment