All files / src/icons Perimeter.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    1x 1x   1x                                                         1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Perimeter = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Perimeter(props, ref) {
  return (
    <Icon {...props} name="Perimeter">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M12.8242 19.4087L14.835 17.2251H9.00195V15.2251H14.7686L12.8135 13.0317L14.3066 11.7007L18.3164 16.1997L16.8008 18.0415L16.7832 18.063L16.7646 18.0835L14.2959 20.7642L12.8242 19.4087Z"
          fill="currentColor"
        />
        <path d="M4 14.2363H6V17.2363H4V14.2363Z" fill="currentColor" />
        <path d="M10 3.23633H13V5.23633H10V3.23633Z" fill="currentColor" />
        <path d="M16 3.23633H19V5.23633H16V3.23633Z" fill="currentColor" />
        <path d="M4 3.23633H7V5.23633H4V3.23633Z" fill="currentColor" />
        <path d="M4 8.23633H6V11.2363H4V8.23633Z" fill="currentColor" />
        <path d="M17 8.23633H19V11.2363H17V8.23633Z" fill="currentColor" />
      </svg>
    </Icon>
  )
})
 
Perimeter.displayName = 'Perimeter'
 
export default Perimeter