Last active
September 9, 2015 02:35
-
-
Save thomasjao/beebe548d04e71c7f150 to your computer and use it in GitHub Desktop.
Draw welfare icons with svg
This file contains 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
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"> | |
<g id="handicap"> | |
<circle cx="32" cy="12" r="5" /> | |
<path d="m32,19 l0,14 14,0 9,14" style="stroke-width: 3; fill: none; stroke: black;" /> | |
<path d="M32,25 l12,0 4,-4" style="stroke-width: 3; fill: none; stroke: black;" /> | |
<path d="M28,28 A10 10 0 1 0 40 37" style="stroke-width: 3; fill: transparent; stroke: #000;" /> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment