JSFiddle - React, Tailwind, and code Playground
HTML
<div class="foo">
<input type="checkbox" name="item1">
<div>
</div>
</div>
CSS
input:checked + div{
background: #333;
height: 30px;
width: 30px;
}
<div class="foo">
<input type="checkbox" name="item1">
<div>
</div>
</div>
input:checked + div{
background: #333;
height: 30px;
width: 30px;
}