Skip to content

Instantly share code, notes, and snippets.

@david-mart
Last active November 23, 2019 00:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save david-mart/f0556b1e44a436494ed72269641161a6 to your computer and use it in GitHub Desktop.
Save david-mart/f0556b1e44a436494ed72269641161a6 to your computer and use it in GitHub Desktop.
<template>
<svg
width="28"
height="28"
viewBox="0 0 28 28"
>
<defs>
<circle id="my-location-a" cx="14" cy="14" r="8" />
</defs>
<g fill="none" fill-rule="evenodd">
<use :fill="fillColor" xlink:href="#my-location-a"/>
<circle cx="14" cy="14" r="11" :stroke="strokeColor" stroke-opacity="0.3" stroke-width="6" />
<circle cx="14" cy="14" r="7" stroke="#FFF" stroke-linejoin="square" stroke-width="2" />
</g>
</svg>
</template>
<script>
export default {
props: ["fillColor", "strokeColor"]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment