JSFiddle - React, Tailwind, and code Playground

HTML

<span>
    <img class="grayscale" src="http://dle-faq.ru/templates/newfaq/assets/img/logo.png" alt="logo"><br>test test</span>

CSS

span:hover{ 
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}
span{
    color: red;
}