11 lines
446 B
XML
11 lines
446 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="32" height="32">
|
|
<defs>
|
|
<linearGradient id="spark-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#3b82f6"/>
|
|
<stop offset="100%" style="stop-color:#8b5cf6"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="45" fill="url(#spark-gradient)"/>
|
|
<path d="M55 20L35 50h15L40 80l30-35H52l8-25z" fill="white"/>
|
|
</svg>
|