JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" value="0" name="bold-ro__selector_radio_button" class="bold-ro__one-time-radio-btn" checked="" style="/* display: none; */">

CSS

label {display:block;}
    .bold-ro__one-time-radio-btn {
        opacity: 1;
        width: 80px;
        height: 80px;
        float: left;
        margin: 5px;
        background: url(http://www.placehold.it/80&text=Better);
    }

JavaScript

$(function() {
        $('input[type=radio].bold-ro__one-time-radio-btn').each(function() {
            var id = this.id;
            $(this).hide().after('<a class="newrad" href="#"><div class="bold-ro__one-time-radio-btn" id="' + id + '"></div></a>');
        });
        
    });