JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <span class="btn">
        <span></span>
    </span>
    <input type="text" />
</div>

CSS

div {
    position: relative;
    width: 180px;
    border: 1px solid #ddd;
    margin: 20px;
    height: 30px;
}

div input {
    padding: 6px;
}

.btn {
    position: absolute;
    height: 30px;
    width: 30px;
    background: #aaa;
    right: 0;
    top: 0;
}

.btn span {
    height: 10px;
    width: 10px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
}