24 lines
No EOL
1 KiB
XML
24 lines
No EOL
1 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
|
|
<defs>
|
|
<linearGradient id="loadGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#8B5CF6"/>
|
|
<stop offset="100%" style="stop-color:#06B6D4"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Rotating circles (loading indicator) -->
|
|
<g transform="translate(50, 50)">
|
|
<circle cx="0" cy="-25" r="4" fill="#8B5CF6">
|
|
<animateTransform attributeName="transform" type="rotate"
|
|
from="0 0 0" to="360 0 0" dur="1s" repeatCount="indefinite"/>
|
|
</circle>
|
|
<circle cx="0" cy="-25" r="4" fill="#06B6D4">
|
|
<animateTransform attributeName="transform" type="rotate"
|
|
from="120 0 0" to="480 0 0" dur="1s" repeatCount="indefinite"/>
|
|
</circle>
|
|
<circle cx="0" cy="-25" r="4" fill="#A855F7">
|
|
<animateTransform attributeName="transform" type="rotate"
|
|
from="240 0 0" to="600 0 0" dur="1s" repeatCount="indefinite"/>
|
|
</circle>
|
|
</g>
|
|
</svg> |