JSFiddle - React, Tailwind, and code Playground

by aliaksej

HTML

<div class="flexible">
  <hr>
  <div class="date">Today</div>
  <hr>
</div>

CSS

.flexible {
  display: flex;
}

hr {
  width: 100%;
  height: 1px;
}

.date {
  padding: 10px 0;
}