JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://i.imgur.com/uUYXqAv.png">

CSS

img {    
    width: 100%;
    animation: rotate 60s ease infinite;
}

@keyframes rotate{
  100%{ transform: rotate(360deg); }
}