JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" id="chk1" /><br/>
<input type="checkbox" id="chk2" /> <label for="chk2">Some label</label>
CSS
input[type=checkbox]:before { content:""; display:inline-block; width:12px; height:12px; background:red; }
input[type=checkbox]:checked:before { background:green; }