JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" style="width: 5ex;max-width:95vw;min-width: 5ex;">
<script>
oninput=onchange=()=>{
event.target.tagName=='INPUT'&&event.target.type=='text'&&(event.target.style.width=(event.target.value.length+1)+'ex');
}
</script>