All files / src/icons MoveMapItem.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 MoveMapItem = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function MoveMapItem(props, ref) {
  return (
    <Icon {...props} name="MoveMapItem">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M12 23L7.325 18.325L8.8925 16.7575L10.9 18.765V13.1H5.2625L7.27 15.08L5.675 16.675L1 12L5.6475 7.3525L7.215 8.92L5.235 10.9H10.9V5.235L8.8925 7.2425L7.325 5.675L12 1L16.675 5.675L15.1075 7.2425L13.1 5.235V10.9H18.7375L16.73 8.92L18.325 7.325L23 12L18.325 16.675L16.7575 15.1075L18.765 13.1H13.1V18.7375L15.08 16.73L16.675 18.325L12 23Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
MoveMapItem.displayName = 'MoveMapItem'
 
export default MoveMapItem