JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" checked><input type="checkbox"><input type="checkbox">
<input type="radio" name="radio" checked><input type="radio" name="radio"><input type="radio" name="radio">

CSS

input[type="checkbox"],input[type="radio"]{-webkit-appearance:none;width:14px;height:14px;border:1px solid rgba(0,0,0,.3);outline:none;margin:5px;box-sizing:border-box;}
input[type="checkbox"]:checked:before{content:"";display:block;width:9px;height:14px;border:0 solid rgb(58, 153, 45);border-width:0 2px 2px 0;-webkit-transform:rotateZ(45deg);margin:-6px 3px;pointer-events:none;}

input[type="radio"]{border-radius:100%;}
input[type="radio"]:checked:before{content:"";display:block;background:rgb(58, 153, 45);border-radius:100%;width:8px;height:8px;margin:2px;pointer-events:none;}