All files / src/icons RectangularArea.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 RectangularArea = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function RectangularArea(props, ref) {
  return (
    <Icon {...props} name="RectangularArea">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M19.9014 8.86816L13.876 19.5801L13.2227 19.2119L12.5693 18.8447L18.5947 8.13184L19.9014 8.86816Z"
          fill="currentColor"
        />
        <path
          d="M16.8164 5.05566L8.61816 19.6289L7.96484 19.2607L7.31152 18.8936L15.5088 4.31934L16.8164 5.05566Z"
          fill="currentColor"
        />
        <path
          d="M11.3711 5.07178L5.3916 15.7007L4.73828 15.3325L4.08496 14.9653L10.0635 4.33545L11.3711 5.07178Z"
          fill="currentColor"
        />
        <path
          d="M20 4V20H4V4H20ZM5.5 18.5H18.5V5.5H5.5V18.5Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
RectangularArea.displayName = 'RectangularArea'
 
export default RectangularArea