JSFiddle - React, Tailwind, and code Playground
by gagob11
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div class="charge"></div>
</body>
</html>
CSS
.charge {
width: 150px;
height: 50px;
border: 10px solid;
position: relative;
}
.charge::after {
content: '';
position: absolute;
}
.charge::after{
width: 10px;
height: 20px;
background: #000;
right: -10px; top: 15px;
}
.charge::before{ height: 100% }
.charge::before {
width: 50%;
background: #ED1C24;
}