All files / src/icons EllipseArea.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 EllipseArea = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function EllipseArea(props, ref) {
  return (
    <Icon {...props} name="EllipseArea">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M19.2627 8.55078L12.5791 20.4316L11.9258 20.0645L11.2725 19.6963L17.9551 7.81445L19.2627 8.55078Z"
          fill="currentColor"
        />
        <path
          d="M16.5635 5.40137L8.55176 19.6436L7.24512 18.9072L15.2559 4.66504L16.5635 5.40137Z"
          fill="currentColor"
        />
        <path
          d="M12.4014 4.91943L6.00098 16.2964L5.34766 15.9292L4.69434 15.561L11.0938 4.18311L12.4014 4.91943Z"
          fill="currentColor"
        />
        <path
          d="M19 12.2754C19 8.4094 15.866 5.27539 12 5.27539C8.13401 5.27539 5 8.4094 5 12.2754C5 16.1414 8.13401 19.2754 12 19.2754C15.866 19.2754 19 16.1414 19 12.2754ZM20.5 12.2754C20.5 16.9698 16.6944 20.7754 12 20.7754C7.30558 20.7754 3.5 16.9698 3.5 12.2754C3.5 7.58097 7.30558 3.77539 12 3.77539C16.6944 3.77539 20.5 7.58097 20.5 12.2754Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
EllipseArea.displayName = 'EllipseArea'
 
export default EllipseArea