22 lines
783 B
XML
22 lines
783 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="lightningGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#3B82F6;stop-opacity:1" />
|
|
<stop offset="50%" style="stop-color:#8B5CF6;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#F59E0B;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Lightning bolt shape -->
|
|
<path d="M45 10 L35 40 L50 40 L30 85 L65 35 L50 35 L65 10 Z"
|
|
fill="url(#lightningGrad)"
|
|
stroke="#1E293B"
|
|
stroke-width="2"/>
|
|
|
|
<!-- Glow effect -->
|
|
<path d="M45 10 L35 40 L50 40 L30 85 L65 35 L50 35 L65 10 Z"
|
|
fill="none"
|
|
stroke="url(#lightningGrad)"
|
|
stroke-width="4"
|
|
opacity="0.6"/>
|
|
</svg> |