Rotating line test

by jorgeluis

HTML

<svg
  viewBox="0 0 150 150"
  xmlns="http://www.w3.org/2000/svg">
  
  <line stroke-width="1" x1="0" y1="50" x2="100" y2="50" stroke="tomato">
    <animateTransform
      attributeName="transform"
      attributeType="XML"
      type="rotate"
      from="0 50 50"
      to="360 50 50"
      dur="5s"
      repeatCount="indefinite" />
  </line>
  
</svg>