JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text">

CSS

input{
  height:50px;
  display: block;
}
input:after{
	position: absolute;
	right: 0;
	width: 27px;
	height: 21px;
	background: red;
	content: '';
	display: block;
  }