JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container"></div>
CSS
.container {
margin: 2rem;
padding: 2rem;
border-right: solid 1px gray;
position: relative;
height: 200px;
width: 0;
}
.container:after {
content: "";
background: white;
height: 2rem;
width: 2rem;
border-top: solid 1px gray;
border-right: solid 1px gray;
position: absolute;
top: 50%;
right: -17px;
transform: rotate(45deg);
margin-top: -1rem;
}