JSFiddle - React, Tailwind, and code Playground

HTML

<hr class="bolt">

CSS

hr {
	border: 0 solid #eeedef;
	border-top-width: 1px;
	height: 0;
	margin-top: 60px;
   	margin-bottom: 60px;
	float: left;
	clear: both;
	display: block;
	width: 100%;
	position: relative;
}
hr:before, hr:after {
	content: " ";
	width: 5px;
	height: 5px;
	position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	border: 1px solid #e5e5e5;
	background-color: #000;
	}
hr:before {
	left: 0;
	bottom: -3px;
}
hr:after {
	bottom: -3px;
	right: 0;
}