← All components

<path>

ContentWallpaper

Vector path drawn from an SVG-subset d attribute (M/L/H/V/C/Z). Use for constellations, decorative flourishes, and bespoke shapes.

Example

<path d="M 10,10 L 40,30 L 70,15 L 90,50" strokeColor="#E8DDC4" strokeWidth="1dp" />

Attributes

NameTypeDefaultDescription
dStringSVG path data. Coordinates are in dp within the element's width/height canvas.
widthDp100dpCanvas width
heightDp100dpCanvas height
colorColorFill colour. Omit for stroke-only.
strokeColorColorStroke colour. Omit for fill-only.
strokeWidthDp0dpStroke width. 0 = no stroke.
strokeCapString
roundbuttsquare
roundStroke cap.
strokeJoinString
roundmiterbevel
roundStroke join.
strokeMiterFloat4Miter limit (when strokeJoin=miter)
strokeDashArrayStringComma-separated dp dash pattern, e.g. "8dp,4dp". Empty = solid.