JSFiddle - React, Tailwind, and code Playground
HTML
<svg viewBox="-50 -50 100 100" width="400">
<defs>
<marker id="Triangle" viewBox="0 0 10 10" refX="1" refY="5"
markerUnits="strokeWidth" markerWidth="4" markerHeight="3"
orient="auto">
<path d="M 0 0 L 10 5 L 0 10 z" fill="rgba(0,0,0, 0.2)"/>
</marker>
</defs>
<path d="M-40,0Z" marker-end="url(#Triangle)" stroke="red" stroke-width="4"/>
<path d="M40,0ZZZZZ" marker-mid="url(#Triangle)" stroke="red" stroke-width="4"/>
</svg>