Last active
August 2, 2019 18:24
-
-
Save david-mart/b568e7e712a113d331ad86ada992ae75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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="#666666" xlink:href="#my-location-a"/> | |
<circle cx="14" cy="14" r="11" stroke="#666666" 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 {} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment