html`
<svg width="400" height="50">
<rect x="0" y="0" width="${value}" height="50" fill="green" />
<circle cx="75" cy="25" r="25" fill="purple" />
<ellipse cx="125" cy="25" rx="25" ry="10" fill="red" />
<line x1="150" y1="5" x2="190" y2="40" stroke="gray" stroke-width="5" />
<polyline fill="none" stroke="blue" stroke-width="2"
points="255,30
265,30
265,20
275,20
275,10
285,10" />
<polygon fill="yellow" stroke="blue" stroke-width="2"
points="205,30
215,10
225,30" />
</svg>
`