UNPKG

@cloudquery/plugin-ui-sdk

Version:

SDK for CloudQuery Plugin UI configuration

17 lines 424 B
/** * @public */ export interface LogoProps { width?: number; height?: number; src: string; fallbackSrc?: string; alt?: string; } /** * Logo component standardizes the look of service and company logos in the custom plugins. * * @public */ export declare function Logo({ width, height, src, alt, fallbackSrc }: LogoProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=logo.d.ts.map