JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<body>
    <svg xmlns="http://www.w3.org/2000/svg"
        xmlns:xlink="http://www.w3.org/1999/xlink"
        width="520" height="300">
        <clipPath id="mask">
            <rect x="200" y="-500"
                width="1000"
                height="1000"
                transform="rotate(10)"
            />
        </clipPath>
        <image width="200" height="300"
            xlink:href="http://files.sharenator.com/rk5wg9_The_epic_LOLcat_post-s450x562-81088.jpg"/>
        <image width="200" height="300"
            x="150"
            clip-path="url(#mask)"
            xlink:href="http://i.techrepublic.com.com/blogs/lolcat-attack.png"/>
    </svg>
</body>
</html>