Last active
March 6, 2020 01:43
-
-
Save vuldin/16d024d4c3fd689352fb9bbb2c5f4a24 to your computer and use it in GitHub Desktop.
Simple logo in svg format
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
<svg | |
viewBox="-110 -110 220 220" | |
version="1.1" | |
xmlns="http://www.w3.org/2000/svg" | |
xmlns:xlink="http://www.w3.org/1999/xlink" | |
> | |
<defs> | |
<clipPath id="circle"> | |
<circle r="107"></circle> | |
</clipPath> | |
</defs> | |
<g clip-path="url(#circle)"> | |
<circle | |
r="100" | |
fill-opacity="0" | |
stroke="#DD6B20" | |
stroke-width="14" | |
></circle> | |
<line | |
x1="0" | |
y1="-100" | |
x2="0" | |
y2="100" | |
stroke="#DD6B20" | |
stroke-width="14" | |
></line> | |
<line | |
x1="-70.71" | |
y1="-70.71" | |
x2="70.71" | |
y2="70.71" | |
stroke="#DD6B20" | |
stroke-width="14" | |
></line> | |
<line | |
x1="-70.71" | |
y1="70.71" | |
x2="70.71" | |
y2="-70.71" | |
stroke="#DD6B20" | |
stroke-width="14" | |
></line> | |
<polyline | |
points="-70.71,-70.71 0,0 70.71,-70.71" | |
fill="none" | |
stroke="#DD6B20" | |
stroke-width="14" | |
transform="translate(0,-43)" | |
/> | |
<polyline | |
points="-70.71,70.71 0,0 70.71,70.71" | |
fill="none" | |
stroke="#DD6B20" | |
stroke-width="14" | |
transform="translate(0,43)" | |
/> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment