JSFiddle - React, Tailwind, and code Playground
HTML
<svg>
<defs>
<mask id="mask1" x="0" y="0" width="100" height="100" >
<rect x="0" y="-50" rx="20" ry="20" width="200" height="100"
style="stroke:none; fill: #ffffff"/>
<rect x="0" y="50" width="200" height="50"
style="stroke:none; fill: #ffffff"/>
<rect x="-130" y="50" rx="20" ry="20" width="200" height="100"
style="stroke:none; fill: #000000"/>
<rect x="70" y="50" rx="20" ry="20" width="200" height="100"
style="stroke:none; fill: #000000"/>
</mask>
</defs>
<image xlink:href="http://placehold.it/100x100" x="0" y="0" width="100" height="100"
style="stroke: none; fill: #0000ff; mask: url(#mask1)"/>
</svg>