JSFiddle - React, Tailwind, and code Playground
HTML
<div class="dropdown">
<input type="text">
</div>
CSS
.dropdown{
position: relative;
display: inline-block;
}
.dropdown::before{
position: absolute;
content: " \2193";
top: 0px;
right: -8px;
height: 20px;
width: 20px;
}