JSFiddle - React, Tailwind, and code Playground

by akogch

HTML

<div class="myblock"></div>

CSS

.myblock {
  background-color: #008ae9;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  margin: 0 auto;
  position: relative;
}

.myblock:before {
  content: "";
  background-color: #008ae9;
  position: absolute;
  height: 2px;
  width: 70px;
  left: -80px;
  top: 6px;
}

.myblock:after {
  content: "";
  background-color: #008ae9;
  position: absolute;
  height: 2px;
  width: 70px;
  right: -80px;
  top: 6px;
}