D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
plugins
/
admin
/
components
/
Filename :
PluginLogo.tsx
back
Copy
import React from 'react'; type PluginLogoProps = { alt: string; className?: string; src: string; height?: string | number; }; export function PluginLogo({ alt, className, src, height }: PluginLogoProps): React.ReactElement { // @ts-ignore - react doesn't know about loading attr. return <img src={src} className={className} alt={alt} loading="lazy" height={height} />; }