JSFiddle - React, Tailwind, and code Playground

by MrLister

HTML

<input type="radio" name="sex" class="sex" value="0" id="sex0"><label for="sex0">Male</label>
    <input type="radio" name="sex" class="sex" value="1" id="sex1"><label for="sex1">Female</label>

CSS

label {border: 0; padding-left:20px; margin-left:-20px;}
.sex:checked+label {outline: 1px solid red;}