15 lines
491 B
XML
15 lines
491 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="100"
|
|
height="100"
|
|
viewBox="0 0 100 100"
|
|
>
|
|
<circle r="50" cx="50" cy="50" fill="transparent" stroke="#a00" stroke-width="2">
|
|
<animate attributeName="r" from="50" to="0" dur="1s" repeatCount="indefinite"/>
|
|
</circle>
|
|
<circle r="25" cx="50" cy="50" fill="transparent" stroke="#a00" stroke-width="1">
|
|
<animate attributeName="r" from="25" to="0" dur="1s" repeatCount="indefinite"/>
|
|
</circle>
|
|
</svg>
|