<div class="wrap">
<a href="#" class="btn"></a>
</div>
.wrap {
background: #000;
}
.btn {
display: block;
position: relative;
width: 15rem;
height: 7rem;
background: #fff;
margin: 0 auto;
border-radius: 0 1rem 1rem 0;
}
.btn:before {
content: '';
width: 0;
height: 0;
border-top: 3.5rem solid transparent;
border-bottom: 3.5rem solid transparent;
border-right: 3rem solid #fff;
position: absolute;
top: 0;
bottom: 0;
left: -3rem;
}