j = {
return html`<svg height=200 width=200>
<defs>
<clipPath id="clip">
<rect x="0" y="0" width="200" height="200" />
</clipPath>
</defs>
<g transform="translate(0,0)">
<image id="jewel" width=2800 height=202 href="${asset}" clip-path="url(#clip")" />
</g>
</svg>`;
}