JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
  <h1>Заголовок</h1>
</div>

CSS

.wrapper {
  text-align: center;
}
h1 {
  display: inline;
  text-align: center;
  border-bottom: 5px solid #000;
  position: relative;
}
h1:after {
  content: "";
  position: absolute;
  bottom: -15px;
  border-bottom: 5px solid #000;
  width: 100%;
  left: 0;
}