JSFiddle - React, Tailwind, and code Playground

HTML

<figure>
    <img src="http://placehold.it/500x500" alt="">
</figure>

CSS

figure {
        position: relative;
        display: inline-block;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background: red;
        line-height: 0;
    }
    
    figure:after {
        content: '';
        position: absolute;
        width: 200%;
        height: 100%;
        left: 0;
        bottom: -91%;
        background: red;
        -webkit-transform: rotate(355deg);
        transform: rotate(355deg);
    }