JSFiddle - React, Tailwind, and code Playground

by BrownieBoy

HTML

<div>
  <input type="checkbox" id="check" class="check-with-label" />
  <label for="check" class="label-for-check">My Label</label>
<div>

CSS

.check-with-label:checked + .label-for-check {
  font-weight: bold;
}