JSFiddle - React, Tailwind, and code Playground
HTML
<div class="torto">
</div>
CSS
.torto {
/* para fins de teste */
background: red;
width: 200px; height: 200px;
margin: 20px;
cursor: pointer;
/* efeito */
transition: 0.3s ease-out;
transform: rotateZ(7deg);
}
.torto:hover {
transform: rotateZ(0);
}