JSFiddle - React, Tailwind, and code Playground
HTML
<div class="scale">
<input type="range" min="1" max="99999999" value="5154369" onchange="setTel(this.value)"><br/><br/>
<div>+372 <span id="telVal">5154369</span></div>
</div>
CSS
body {display:flex;justify-content:center;align-items: center;height:100vh}
.scale {transform: scale(2);}
JavaScript
setTel = (val) => document.getElementById('telVal').innerHTML = val;