Files
webdoorcreator/WebDoorCreator.UI/Components/SvgComp/StepArrow.razor
T
2023-05-03 09:57:00 +02:00

7 lines
451 B
Plaintext

<svg viewBox="0 0 @ObjW @ObjH" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg">
<rect width="@rectW" height="@rectH" style="@BlockStyle" transform="skewX(@step)" />
<g transform="translate(@step,@rectH)">
<rect width="@rectW" height="@rectH" style="@BlockStyle" transform="skewX(@(-step))" />
</g>
<text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" style="@TextStyle">@StepText</text>
</svg>