import * as React from 'react'; type PluginLogoProps = { alt: string; className?: string; src: string; height?: string | number; }; export function PluginLogo({ alt, className, src, height }: PluginLogoProps): React.ReactElement { return {alt}; }