JSFiddle - React, Tailwind, and code Playground

HTML

<svg viewBox="0 0 100 100">

		<defs>
			<marker id="arrow" markerWidth="5" markerHeight="6" refx="5" refy="2" orient="auto">
				<path d="M0,0 L0,4 L5,2.5 L5,1.5 L0,0" style="fill:red;" ></path>
			</marker>
		</defs>

		<path  d="M0,0 L50,50"
			  style="stroke:red; stroke-width: 10px; fill: none;
					 marker-end: url(#arrow);"
		></path>

	</svg>