JSFiddle - React, Tailwind, and code Playground

HTML

<img src="https://pbs.twimg.com/profile_images/378800000866924847/-X6N7l8Y.png" />

CSS

img {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 60s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    
    to {
        -webkit-transform: rotate(360deg);
    }
}