JSFiddle - React, Tailwind, and code Playground
HTML
<div class="figure">
</div>
CSS
.figure {
position: relative;
width: 200px;
height: 150px;
border-width: 5px 0 5px 0;
border-style: solid;
border-color: #f37959;
background-color: #fff;
}
.figure:after {
content: " ";
position: absolute;
border: 80px solid transparent;
border-left: 20px solid #ccc;
top: -5px;
left: 0px;
box-shadow: 0 1px 0 5px #f37959;
}