29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="mainGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#00c6ff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#0072ff;stop-opacity:1" />
|
|
</linearGradient>
|
|
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
|
<feGaussianBlur in="SourceAlpha" stdDeviation="2" />
|
|
<feOffset dx="1" dy="2" result="offsetblur" />
|
|
<feComponentTransfer>
|
|
<feFuncA type="linear" slope="0.3" />
|
|
</feComponentTransfer>
|
|
<feMerge>
|
|
<feMergeNode />
|
|
<feMergeNode in="SourceGraphic" />
|
|
</feMerge>
|
|
</filter>
|
|
</defs>
|
|
<!-- Background Circle with Soft Gradient -->
|
|
<circle cx="50" cy="50" r="45" fill="#f8fafc" stroke="url(#mainGradient)" stroke-width="2" />
|
|
|
|
<!-- Stylized Z that looks like a growth chart/path -->
|
|
<path d="M30 35 L70 35 L35 70 L75 70" fill="none" stroke="url(#mainGradient)" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" filter="url(#shadow)" />
|
|
|
|
<!-- Abstract Nodes representing tech/finance -->
|
|
<circle cx="70" cy="35" r="5" fill="#10b981" />
|
|
<circle cx="35" cy="70" r="5" fill="#f59e0b" />
|
|
<path d="M52 52 L58 52" stroke="#6366f1" stroke-width="4" stroke-linecap="round" />
|
|
</svg> |