JSFiddle - React, Tailwind, and code Playground
HTML
<div class="selected-icon" style=""><img width="25" height="24" src="images/smileys/smiley.png"></div>
<div class="show-hover" style="display:none">xyz</div>
JavaScript
$('.selected-icon').mouseover(function()
{
$('.show-hover').show();
});
$('.selected-icon').mouseout(function()
{
$('.show-hover').hide();
});