JSFiddle - React, Tailwind, and code Playground

by poonia

HTML

<div class="remove"></div>

SCSS

.remove {
position: absolute;
top: 10px;
left: 10px;
height: 20px;
width: 20px;
background-color: red;
border-radius: 50%;
&:after {
  content: '';
  position:absolute;
  top: 50%;
  left: 15%;
  height: 1px;
  width: 70%;
  background-color: white;
}
}