JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test"></div>

CSS

.test {
    position: relative;
    top: 0px;
    left: 0px;
    background: url(https://www.blokhutreus.nl/wp-content/uploads/2017/10/13-tot-19mm2.png);
    width: 211px;
    height: 35px;
}

.test:hover:after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: url("https://www.blokhutreus.nl/wp-content/uploads/2017/10/close.png");
    background-repeat: no-repeat;
}