JSFiddle - React, Tailwind, and code Playground

HTML

<div class="checkbox">
  </div>

CSS

.checkbox{
    width: 23px;
    height: 21px;
     background: transparent url(http://i.stack.imgur.com/S4p2R.png ) no-repeat 0 50%
}
.checked{
    background: transparent url(http://i.stack.imgur.com/S4p2R.png ) no-repeat 80% 50%
}

JavaScript

$(".checkbox").click(function(){
    $(this).toggleClass('checked')
});