UNPKG

@redocly/theme

Version:

Shared UI components lib

11 lines (10 loc) 359 B
import type { JSX } from 'react'; export type SidebarLogoProps = { imageUrl?: string; href?: string; altText?: string; dataTestId?: string; backgroundColor?: string; className?: string; }; export declare function SidebarLogo({ imageUrl, href, altText, backgroundColor, dataTestId, className, }?: SidebarLogoProps): JSX.Element | null;