All files / src/icons PolygonFeature.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 PolygonFeature = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PolygonFeature(props, ref) {
  return (
    <Icon {...props} name="PolygonFeature">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M12.1723 2.64929C12.6202 2.29692 13.2683 2.39709 13.5913 2.86902L21.1427 13.9032C21.5177 14.4513 21.2677 15.2109 20.6426 15.4218L5.4019 20.5614L5.28124 20.5936C4.68138 20.7157 4.10071 20.2519 4.10071 19.6122V9.48914C4.10071 9.18072 4.24148 8.88954 4.48199 8.70007L12.1723 2.64929ZM6.07759 9.97742V18.2245L18.7661 13.9452L12.5604 4.87585L6.07759 9.97742Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
PolygonFeature.displayName = 'PolygonFeature'
 
export default PolygonFeature