JSFiddle - React, Tailwind, and code Playground

by André Albson

HTML

<div class="espaco">
  <div class="tag">
    teste
  </div>
</div>

CSS

.tag:after {
    content:'\25BA';
    float: left;
    transform: rotate(180deg);
    margin-left: -22px;
    color: red;
    font-size: 26px;
    margin-top: -8px;
}
.espaco{
  margin: 30px;
}

.tag{
  background-color: red;
  width: 100px;
}