JSFiddle - React, Tailwind, and code Playground

by babich_ss

HTML

<input type="checkbox">

CSS

input{
    border: none;
    background: red;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    width: 16px;
    height: 16px;
}
input:checked{
    background: green;
}