All files / src/icons PolygonArea.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 37 38 39 40 41 42 43 44    1x 1x   1x                                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const PolygonArea = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PolygonArea(props, ref) {
  return (
    <Icon {...props} name="PolygonArea">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M21 12L16.5 20H7.5L3 12L7.5 4H16.5L21 12ZM4.7207 12L8.37793 18.5H15.6221L19.2783 12L15.6221 5.5H8.37793L4.7207 12Z"
          fill="currentColor"
        />
        <path
          d="M18.9375 8.4209L12.6533 19.5928L12 19.2246L11.3467 18.8574L17.6309 7.68457L18.9375 8.4209Z"
          fill="currentColor"
        />
        <path
          d="M16.665 5.12598L8.65332 19.3682L7.34668 18.6318L15.3574 4.38965L16.665 5.12598Z"
          fill="currentColor"
        />
        <path
          d="M12.6328 5.1377L6.65332 15.7666L6 15.3994L5.34668 15.0312L11.3252 4.40137L12.6328 5.1377Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
PolygonArea.displayName = 'PolygonArea'
 
export default PolygonArea