JSFiddle - React, Tailwind, and code Playground
by J. Albert Bowden
HTML
<div class="shape">08:18 PM</div>
CSS
.shape {
width: 200px;
height: 50px;
background: #000;
margin: 50px;
position: relative;
color:#fff;
}
.shape:before {
display: block;
content: "";
height: 0;
width: 0;
border: 25px solid #f00;
border-bottom: 25px solid transparent;
border-left: 25px solid transparent;
position: absolute;
left: -50px;
}
.shape:after {
display: block;
content: "";
height: 0;
width: 0;
border: 25px solid #f00;
border-top: 25px solid transparent;
border-right: 25px solid transparent;
position: absolute;
right: -50px;
}