{
return html`
<div style="--hash-stroke: rgba(0,240,240,1);">
<svg width=${width}>
<rect width="100px" height="100px" fill="url(#hatch3)" />
</svg>
<svg style="position: absolute;">
<defs>
<pattern
id="hatch3"
width="100px"
height="5px"
patternUnits="userSpaceOnUse"
patternContentUnits="userSpaceOnUse"
viewBox="0 0 100 100"
preserveAspectRatio="none"
patternTransform="rotate(45)"
>
<line
x1="0"
x2="100"
y1="25"
y2="25"
stroke-width="10"
style="stroke: var(--hash-stroke, black)"
/>
</pattern>
</defs>
</svg>
</div>`;
}