JSFiddle - React, Tailwind, and code Playground
HTML
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="100px" height="100px">
<defs>
<filter id="shadow" x="-300%" y="-100%" height="300%" width="700%">
<feDropShadow dx="0" dy="0" stdDeviation="5"/>
<feDropShadow dx="0" dy="0" flood-color="#e56be4" stdDeviation=".5"/>
</filter>
</defs>
<g>
<polyline points="14,8 10,12 14,16"
style="stroke:white; stroke-width:.5; fill: none; stroke-linejoin: round; filter:url(#shadow);"/>
</g>
</svg>