JSFiddle - React, Tailwind, and code Playground

by fuggfuggfugg

HTML

<div class="bar-container " style="left: 20px; width: 300px;"><div class="left-arrow"></div><div class="right-arrow"></div></div>

CSS

.bar-container {
  position: absolute;
  background: #666;
  border-radius: 2px;
  height: 10px;
  color: #666;
  top: 4px;
  cursor: pointer;
}

.left-arrow {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #666;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.right-arrow{
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #666;
}