JSFiddle - React, Tailwind, and code Playground
by luka kupunia
HTML
<div class="box">
<div class="line"></div>
<div class="text">ggrewsff</div>
<div class="line"></div>
</div>
CSS
.box {
display: flex;
justify-content: space-between;
align-items: center;
}
.line {
width: 100%;
height: 1px;
background: red;
}
.text {
margin: 0 20px;
}