I have an SVG that looks like this,
<svg xmlns="http://www.w3.org/2000/svg" width="1130" height="1130">
<g fill="none" stroke="#1864ab" stroke-width="2" stroke-dasharray="4" opacity=".4">
<circle cx="565" cy="565" r="565" stroke="none"/>
<circle cx="565" cy="565" r="564"/>
</g>
</svg>
I want to give the impression that the this circle is spinning clockwise I can not for the life of me figure it out, I have in the past done stroke animation where one stroke gets painted one after the other so the svg looks like it's being drawn, but I have never animated the rotation of an svg.