23 lines
926 B
XML
23 lines
926 B
XML
|
|
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#9B59B6"/>
|
||
|
|
<stop offset="50%" style="stop-color:#5B8DEF"/>
|
||
|
|
<stop offset="100%" style="stop-color:#00BFFF"/>
|
||
|
|
</linearGradient>
|
||
|
|
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
||
|
|
<feDropShadow dx="0" dy="4" stdDeviation="8" flood-color="#000" flood-opacity="0.1"/>
|
||
|
|
</filter>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<!-- Rounded square background -->
|
||
|
|
<rect x="20" y="20" width="160" height="160" rx="35" ry="35" fill="#F5F5F7" filter="url(#shadow)"/>
|
||
|
|
|
||
|
|
<!-- 4-pointed star -->
|
||
|
|
<path d="M100 40
|
||
|
|
C100 70, 85 85, 55 100
|
||
|
|
C85 115, 100 130, 100 160
|
||
|
|
C100 130, 115 115, 145 100
|
||
|
|
C115 85, 100 70, 100 40 Z"
|
||
|
|
fill="url(#starGradient)"/>
|
||
|
|
</svg>
|