JSFiddle - React, Tailwind, and code Playground

HTML

<div class="separator">Next section</div>

CSS

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}
.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
    margin: 0 15px;
}
.separator::before {
    margin-right: .25em;
}
.separator::after {
    margin-left: .25em;
}