map pinned icon
Free map pinned SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M18 9c0 4-6 8-6 8s-6-4-6-8a6 6 0 0 1 12 0Z"/>
<circle cx="12" cy="9" r="2"/>
<path d="M8 16.4C5 17 3 18.1 3 19.5 3 21 7 22 12 22s9-1 9-2.5c0-1.4-2-2.5-5-3.1"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/map-pinned.svg"
width="24" height="24" alt="map pinned icon">
<!-- …or paste the raw SVG from the SVG tab -->import { MapPinnedIcon } from "@softicons/react";
export default function Example() {
return <MapPinnedIcon size={24} strokeWidth={2} />;
}<script setup>
import { MapPinnedIcon } from "@softicons/vue";
</script>
<template>
<MapPinnedIcon :size="24" :stroke-width="2" />
</template>import { MapPinnedIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [MapPinnedIconComponent],
template: `<map-pinned-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}