All files / src/icons Map.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 Map = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Map(props, ref) {
  return (
    <Icon {...props} name="Map">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M14.35 20.775L9 18.9L4.35 20.7C4.18333 20.7667 4.02083 20.7875 3.8625 20.7625C3.70417 20.7375 3.55833 20.6833 3.425 20.6C3.29167 20.5167 3.1875 20.4042 3.1125 20.2625C3.0375 20.1208 3 19.9583 3 19.775V5.75C3 5.53333 3.0625 5.34167 3.1875 5.175C3.3125 5.00833 3.48333 4.88333 3.7 4.8L8.35 3.225C8.45 3.19167 8.55417 3.16667 8.6625 3.15C8.77083 3.13333 8.88333 3.125 9 3.125C9.11667 3.125 9.22917 3.13333 9.3375 3.15C9.44583 3.16667 9.55 3.19167 9.65 3.225L15 5.1L19.65 3.3C19.8167 3.23333 19.9792 3.2125 20.1375 3.2375C20.2958 3.2625 20.4417 3.31667 20.575 3.4C20.7083 3.48333 20.8125 3.59583 20.8875 3.7375C20.9625 3.87917 21 4.04167 21 4.225V18.25C21 18.4667 20.9375 18.6583 20.8125 18.825C20.6875 18.9917 20.5167 19.1167 20.3 19.2L15.65 20.775C15.55 20.8083 15.4458 20.8333 15.3375 20.85C15.2292 20.8667 15.1167 20.875 15 20.875C14.8833 20.875 14.7708 20.8667 14.6625 20.85C14.5542 20.8333 14.45 20.8083 14.35 20.775ZM14 18.55V6.85L10 5.45V17.15L14 18.55ZM16 18.55L19 17.55V5.7L16 6.85V18.55ZM5 18.3L8 17.15V5.45L5 6.45V18.3Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Map.displayName = 'Map'
 
export default Map