JSFiddle - React, Tailwind, and code Playground
HTML
<input type="submit" class="imgClass" value="" />
CSS
.imgClass {
background-image: url(http://inspectelement.com/wp-content/themes/inspectelementv2/style/images/button.png);
background-repeat: no-repeat;
background-position: left top;
width: 186px;
height: 53px;
border: 0px;
background-color: transparent;
cursor: pointer;
outline: 0;
}
.imgClass:hover{
background-position: 0px -52px;
}
.imgClass:active{
background-position: 0px -104px;
}