JSFiddle - React, Tailwind, and code Playground

HTML

Text
<input checked type="radio" />
<input checked type="checkbox" />
More text

CSS

input[type=radio], input[type=checkbox] {
        -moz-appearance:none;
        -webkit-appearance:none;
        border: 1px dotted green;
        height: 50px;
        width: 10px;
    }