JSFiddle - React, Tailwind, and code Playground

by Gatsu35

HTML

<span><input type="checkbox"><label>Toto</label></span>

CSS

input + label {
  color: blue;
  font-size: 40px;
  transition: 1s all linear;
  
}

input:checked + label {
  transform: translateX(40px);
}