JSFiddle - React, Tailwind, and code Playground
by Tyler Brown
HTML
<svg>
<defs>
<mask id="mask3" x="0" y="0" width="100" height="100" >
<rect x="0" y="0" width="100" height="50" fill="white" />
<rect x="0" y="50" width="100" height="50" fill="gray" />
</mask>
</defs>
<circle cx="50" cy="50" r="50" width="100" height="100" fill="blue" mask="url(#mask3)" />
</svg>