JSFiddle - React, Tailwind, and code Playground

by godfrzero

HTML

<div class="container">
  <div class="item icon">⏰</div>
  <div class="item label">Every weekday, with love</div>
  <div class="item action">🖋</div>
</div>

CSS

div {
  background: rgba(0, 0, 0, 0.05);
}

.container {
  display: flex;
  width: 222px;
  padding: 0 32px;
  height: 40px;
  position: relative;
  align-items: center;
  
}

.item {
  display: flex;
  flex: 1 1 auto;
}

.action {
  position: absolute;
  right: 0;
  width: 32px;
}

.icon {
  position: absolute;
  left: 0;
  width: 32px;
}

.label {
  
}