@redocly/theme
Version:
Shared UI components lib
10 lines (9 loc) • 325 B
TypeScript
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;