JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" checked />
CSS
input {
line-height: normal;
&[type="checkbox"],
&[type="radio"] {
width: 1.3em;
height: 1.3em;
background-color: white;
border-radius: 50%;
vertical-align: middle;
border: 1px solid red;
border-width: thick;
-webkit-appearance: none;
outline: none;
cursor: pointer;
}
}