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

7 lines
460 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(@tipSize)" />
<g transform="translate(@tipSize,@rectH)">
<rect width="@rectW" height="@rectH" style="@BlockStyle" transform="skewX(@(-tipSize))" />
</g>
<text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" style="@TextStyle">@StepText</text>
</svg>