in _includes/logos/Logo.11ty.tsx [6:20]
let getResizedSvgContent = function (
product: string,
variant?: string,
width?: number,
height?: number
): string {
let svgContent = getSvgContent(product, variant);
if (width && height) {
svgContent = svgContent.replace(
'width="70" height="70"',
`width=\"${width}\" height=\"${height}\"`
);
}
return svgContent;
};