15 lines
677 B
XML
15 lines
677 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
<defs>
|
|
<linearGradient id="iconGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#90A4AE"/>
|
|
<stop offset="100%" stop-color="#455A64"/>
|
|
</linearGradient>
|
|
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
|
<feDropShadow dx="1.5" dy="2.5" stdDeviation="2" flood-color="#263238" flood-opacity="0.25"/>
|
|
</filter>
|
|
</defs>
|
|
<g filter="url(#shadow)" fill="none" stroke="url(#iconGrad)" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="20" cy="20" r="8"/>
|
|
<line x1="26" y1="26" x2="38" y2="38"/>
|
|
</g>
|
|
</svg>
|