JSFiddle - React, Tailwind, and code Playground

HTML

<label class="button" for="resize">button</label>
<input class="hidden" id="resize" type="checkbox">
<span>text</span>

CSS

.button{border:1px solid #bbb;background:#ddd;}
.hidden{border:0;width:0;height:0;margin:0;padding:0;}
.hidden:checked + span{font-size:40px;}