JSFiddle - React, Tailwind, and code Playground

by Sergey Linnick

HTML

<div class="arr">lorem</div>

CSS

div{
	display:flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid gray;
  background: silver;
  color: white;
  padding: 15px;
}
div:after {
  content: "";
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 3px;
  color: grey;
  transform: rotate(45deg);
}