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