UNPKG

@redocly/theme

Version:

Shared UI components lib

8 lines (7 loc) 262 B
import type { JSX } from 'react'; import type { LogoConfig } from '../../core/types'; export type LogoProps = { config: LogoConfig; className?: string; }; export declare function Logo({ config, className, ...otherProps }: LogoProps): JSX.Element | null;