JSFiddle - React, Tailwind, and code Playground

HTML

<label>
    <input type="radio" name="test">
    <span></span>
</label>
<label>
    <input type="radio" name="test">
    <span></span>
</label>

CSS

label span {
    display: inline-block;
    width: 53px;
    height: 53px;
    background: url(http://doc.qt.nokia.com/qt-components-symbian-1.0/images//radiobutton_list.png) -3px 0 no-repeat;
    cursor: pointer;
}
input {
    position: absolute;
    left: -9999em;
}
input:checked + span {
    background-position: -135px 0;   
}