import React, { memo, SVGAttributes } from 'react'; export interface WixLogoProps extends SVGAttributes { height?: string | number; } export const WixLogo = memo(function WixLogo({ height = 24, ...rest }: WixLogoProps) { return ( ); });