JSFiddle - React, Tailwind, and code Playground

by l2banners

HTML

<div class="test">
  Подробнее
</div>

SCSS

.test {
  font-size: 24px;
  display: flex;
  align-items: center;
  padding: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  position: relative;

  &::before {
    content: '➤ ➤';
    position: absolute;
    right: 10px;
    top: 10px;
    transform: scale(1, 2);
     color: #babae1;
  }
  &::after {
    content: '➤';
    position: absolute;
    right: 70px;
    top: 10px;
    transform: scale(1, 2);
     color: blue;
  }
}