JSFiddle - React, Tailwind, and code Playground
HTML
<label for="ship-sfc-CNQM" class="radio">
<input type="radio" name="shipping" value="sfc_CNQM" id="ship-sfc-CNQM" />
<div class="radioStyle"></div>
<span>Here is the text</span>
</label>
<label for="ship-sfc-CNQM-2" class="radio">
<input type="radio" name="shipping" value="sfc_CNQM" id="ship-sfc-CNQM-2" />
<div class="radioStyle"></div>
<span>Here is the text</span>
</label>
CSS
.radio input { display: none; }
.radio .radioStyle {
display: inline-block;
width:20px; height:20px;
background: grey; }
.radio input:checked + .radioStyle { background: green; }
.radio span { display: inline-block; }