mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 20:37:51 +00:00
10 lines
587 B
XML
10 lines
587 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50">
|
||
|
<circle cx="25" cy="25" r="20" fill="none" stroke="black" stroke-width="3"></circle>
|
||
|
<line x1="25" y1="30" x2="25" y2="15" style="stroke:black;stroke-width:3">
|
||
|
<animate attributeName="y1" values="30;25;30" dur="1s" repeatCount="indefinite"></animate>
|
||
|
<animate attributeName="y2" values="15;20;15" dur="1s" repeatCount="indefinite"></animate>
|
||
|
</line>
|
||
|
<circle cx="25" cy="35" r="3" fill="black">
|
||
|
<animate attributeName="cy" values="35;30;35" dur="1s" repeatCount="indefinite"></animate>
|
||
|
</circle>
|
||
|
</svg>
|