JSFiddle - React, Tailwind, and code Playground
HTML
<span class="rupee">
<input type="text" />
<span>₹</span>
</span>
CSS
.rupee {
position: relative;
}
.rupee input {
padding-left:18px;
}
span {
position:absolute;
left:5px;
top:0;
font-size:15px;
}