JSFiddle - React, Tailwind, and code Playground

HTML

<p class="title-recomend title-banner">Рекомендую!</p>

CSS

.title-banner{
  font-size: 16px;
  line-height: 37px;
  height: 37px;
  text-align: center;
  position: relative;
  border-radius: 3px
}
.title-banner:after{
  content: '';
  position: absolute;
  border-top: 15px solid;
  border-left: 9px solid;
  border-right: 9px solid;
  border-bottom: 15px solid;
  border-color: transparent transparent transparent #d4964c;
  top: 19px;
  right: -8px;
  z-index: -1;
}
.title-recomend{
  background: #ffbb6b;
  color: #29263d;
  width: 230px;
  margin-bottom: 20px;
}