map marker info icon

map-marker-info from Unicons by Iconscout · Line · Location And Map · Apache-2.0 Free for personal and commercial use.

Name
map-marker-info
Set
Unicons
Style
Line
Category
Location And Map
Viewbox
24×24
License
Apache 2.0

More location and map icons from Unicons

Use the map marker info icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 10a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1m8.46-.32A8.5 8.5 0 0 0 7.3 3.36a8.56 8.56 0 0 0-3.76 6.27A8.46 8.46 0 0 0 6 16.46l5.3 5.31a1 1 0 0 0 1.42 0L18 16.46a8.46 8.46 0 0 0 2.46-6.83Zm-3.86 5.37l-4.6 4.6l-4.6-4.6a6.49 6.49 0 0 1-1.87-5.22A6.57 6.57 0 0 1 8.42 5a6.47 6.47 0 0 1 7.16 0a6.57 6.57 0 0 1 2.89 4.81a6.49 6.49 0 0 1-1.87 5.24m-3.68-7.48a.6.6 0 0 0-.09-.17l-.12-.15A1 1 0 0 0 11.8 7h-.18l-.18.09l-.15.13l-.12.15a.6.6 0 0 0-.09.17a.6.6 0 0 0-.06.19A1.2 1.2 0 0 0 11 8a.9.9 0 0 0 .08.39a1.1 1.1 0 0 0 .21.32a1.1 1.1 0 0 0 .33.22a1.07 1.07 0 0 0 .76 0a1.2 1.2 0 0 0 .33-.22a1.1 1.1 0 0 0 .21-.32A1 1 0 0 0 13 8a1 1 0 0 0 0-.19a.6.6 0 0 0-.08-.24"/></svg>

React

import type { SVGProps } from "react";

export function UilMapMarkerInfo(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 10a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1m8.46-.32A8.5 8.5 0 0 0 7.3 3.36a8.56 8.56 0 0 0-3.76 6.27A8.46 8.46 0 0 0 6 16.46l5.3 5.31a1 1 0 0 0 1.42 0L18 16.46a8.46 8.46 0 0 0 2.46-6.83Zm-3.86 5.37l-4.6 4.6l-4.6-4.6a6.49 6.49 0 0 1-1.87-5.22A6.57 6.57 0 0 1 8.42 5a6.47 6.47 0 0 1 7.16 0a6.57 6.57 0 0 1 2.89 4.81a6.49 6.49 0 0 1-1.87 5.24m-3.68-7.48a.6.6 0 0 0-.09-.17l-.12-.15A1 1 0 0 0 11.8 7h-.18l-.18.09l-.15.13l-.12.15a.6.6 0 0 0-.09.17a.6.6 0 0 0-.06.19A1.2 1.2 0 0 0 11 8a.9.9 0 0 0 .08.39a1.1 1.1 0 0 0 .21.32a1.1 1.1 0 0 0 .33.22a1.07 1.07 0 0 0 .76 0a1.2 1.2 0 0 0 .33-.22a1.1 1.1 0 0 0 .21-.32A1 1 0 0 0 13 8a1 1 0 0 0 0-.19a.6.6 0 0 0-.08-.24"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 10a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1m8.46-.32A8.5 8.5 0 0 0 7.3 3.36a8.56 8.56 0 0 0-3.76 6.27A8.46 8.46 0 0 0 6 16.46l5.3 5.31a1 1 0 0 0 1.42 0L18 16.46a8.46 8.46 0 0 0 2.46-6.83Zm-3.86 5.37l-4.6 4.6l-4.6-4.6a6.49 6.49 0 0 1-1.87-5.22A6.57 6.57 0 0 1 8.42 5a6.47 6.47 0 0 1 7.16 0a6.57 6.57 0 0 1 2.89 4.81a6.49 6.49 0 0 1-1.87 5.24m-3.68-7.48a.6.6 0 0 0-.09-.17l-.12-.15A1 1 0 0 0 11.8 7h-.18l-.18.09l-.15.13l-.12.15a.6.6 0 0 0-.09.17a.6.6 0 0 0-.06.19A1.2 1.2 0 0 0 11 8a.9.9 0 0 0 .08.39a1.1 1.1 0 0 0 .21.32a1.1 1.1 0 0 0 .33.22a1.07 1.07 0 0 0 .76 0a1.2 1.2 0 0 0 .33-.22a1.1 1.1 0 0 0 .21-.32A1 1 0 0 0 13 8a1 1 0 0 0 0-.19a.6.6 0 0 0-.08-.24"/></svg>
</template>

CSS

.icon-map-marker-info {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12%2010a1%201%200%200%200-1%201v2a1%201%200%200%200%202%200v-2a1%201%200%200%200-1-1m8.46-.32A8.5%208.5%200%200%200%207.3%203.36a8.56%208.56%200%200%200-3.76%206.27A8.46%208.46%200%200%200%206%2016.46l5.3%205.31a1%201%200%200%200%201.42%200L18%2016.46a8.46%208.46%200%200%200%202.46-6.83Zm-3.86%205.37l-4.6%204.6l-4.6-4.6a6.49%206.49%200%200%201-1.87-5.22A6.57%206.57%200%200%201%208.42%205a6.47%206.47%200%200%201%207.16%200a6.57%206.57%200%200%201%202.89%204.81a6.49%206.49%200%200%201-1.87%205.24m-3.68-7.48a.6.6%200%200%200-.09-.17l-.12-.15A1%201%200%200%200%2011.8%207h-.18l-.18.09l-.15.13l-.12.15a.6.6%200%200%200-.09.17a.6.6%200%200%200-.06.19A1.2%201.2%200%200%200%2011%208a.9.9%200%200%200%20.08.39a1.1%201.1%200%200%200%20.21.32a1.1%201.1%200%200%200%20.33.22a1.07%201.07%200%200%200%20.76%200a1.2%201.2%200%200%200%20.33-.22a1.1%201.1%200%200%200%20.21-.32A1%201%200%200%200%2013%208a1%201%200%200%200%200-.19a.6.6%200%200%200-.08-.24%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12%2010a1%201%200%200%200-1%201v2a1%201%200%200%200%202%200v-2a1%201%200%200%200-1-1m8.46-.32A8.5%208.5%200%200%200%207.3%203.36a8.56%208.56%200%200%200-3.76%206.27A8.46%208.46%200%200%200%206%2016.46l5.3%205.31a1%201%200%200%200%201.42%200L18%2016.46a8.46%208.46%200%200%200%202.46-6.83Zm-3.86%205.37l-4.6%204.6l-4.6-4.6a6.49%206.49%200%200%201-1.87-5.22A6.57%206.57%200%200%201%208.42%205a6.47%206.47%200%200%201%207.16%200a6.57%206.57%200%200%201%202.89%204.81a6.49%206.49%200%200%201-1.87%205.24m-3.68-7.48a.6.6%200%200%200-.09-.17l-.12-.15A1%201%200%200%200%2011.8%207h-.18l-.18.09l-.15.13l-.12.15a.6.6%200%200%200-.09.17a.6.6%200%200%200-.06.19A1.2%201.2%200%200%200%2011%208a.9.9%200%200%200%20.08.39a1.1%201.1%200%200%200%20.21.32a1.1%201.1%200%200%200%20.33.22a1.07%201.07%200%200%200%20.76%200a1.2%201.2%200%200%200%20.33-.22a1.1%201.1%200%200%200%20.21-.32A1%201%200%200%200%2013%208a1%201%200%200%200%200-.19a.6.6%200%200%200-.08-.24%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/uil/map-marker-info.svg?color=%231a73e8&size=48