JSFiddle - React, Tailwind, and code Playground

HTML

<svg height="210" width="500">
        <defs>
            <linearGradient id="half">
                <stop offset="0%" stop-color="red" />
                <stop offset="50%" stop-color="red" />
                <stop offset="50%" stop-color="white" />
                <stop offset="100%" stop-color="white" />
            </linearGradient>            
        </defs>
        <g fill="url(#half)" stroke="blue" stroke-width="2">
            <polygon points="100,10 40,198 190,78 10,78 160,198"/>
            <polygon points="100,10 40,198 190,78 10,78 160,198" stroke="none"/>
        </g>
    </svg>