I have a basic HTML structure:
.btn_clip {
display: block;
width: 524px;
height: 170px;
background: #ed1c23;
font-size: 25px;
color: #fff;
text-align: center;
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
line-height: 170px;
text-decoration:none;
}
<a href="#" class="btn_clip">LEARN MORE</a>
However, the `clip-path` property doesn't work in IE. I'm looking to convert it to SVG instead of using an image tag. How can I achieve the same output with SVG?