JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
HTML
<div>
>
</div>
CSS
div {
display: inline-block;
font-size: 40px;
line-height: 40px;
transition: transform 0.15s linear;
}
div:hover {
border: 1px solid black;
-webkit-transform: rotate(-180deg);
transition: all 0.15s linear;
}