JSFiddle - React, Tailwind, and code Playground

by fainz777

HTML

<input type="radio" name="radio" value="1" checked> 1
<input type="radio" name="radio" value="1"> 2

CSS

input[type="radio"] {
      -webkit-appearance: checkbox;
      -moz-appearance: checkbox;
      appearance: checkbox;
}