JSFiddle - React, Tailwind, and code Playground
HTML
<a href="">hover me</a>
<div></div>
CSS
div{
width:10px;
height:10px;
background: red;
transition: all 0.5s;
}
a:hover + div{
width:30px;
height:30px;
background: blue;
}