SVG Spinning Circle (grey)

by jorgeluis

HTML

<svg style="width: 70px; height: 70px;">
  <circle cx="50%" cy="50%" r="30" fill="none" stroke="#fff" stroke-width="4">
  </circle>
  <circle cx="50%" cy="50%" r="30" fill="none" stroke="#dbdbdb" stroke-width="4" style="stroke-dashoffset: 197.92px; stroke-dasharray: 282.743px;">
  </circle>
  <animateTransform attributeType="xml"
                    attributeName="transform"
                    type="rotate"
                    from="0 0 0"
                    to="360 0 0"
                    dur="0.6s"
                    repeatCount="indefinite"/>
</svg>