JSFiddle - React, Tailwind, and code Playground

HTML

<div class="textbox">
<input type="text" />
</div>

CSS

.textbox
{
 background-image:url('http://placehold.it/15/15');   
 background-repeat:no-repeat;
    background-position:100% 100%;
  border:solid 1px black;
  border-radius: 5px;
    padding-left:20px;
    padding-right:20px;
    width:200px;
}
.textbox input
{
 border:none;
    background:transparent;
    width:100%;
     outline: none;
}