{
const el = html`<svg>`;
const svgConverter = new svg2rough.Svg2Roughjs(el);
svgConverter.backgroundColor = "white";
svgConverter.pencilFilter = pencilFilter;
svgConverter.randomize = randomize;
svgConverter.svg = svgLogo;
svgConverter.roughConfig = {
bowing,
roughness,
fillStyle
};
svgConverter.sketch();
return el;
}