UNPKG

@redocly/theme

Version:

Shared UI components lib

10 lines (9 loc) 385 B
import { ReactNode, JSX } from 'react'; export type CatalogEntityInfoBarProps = { leftContent: ReactNode; rightContent?: ReactNode; withSeparator?: boolean; hoverEffect?: boolean; isCodeBlock?: boolean; }; export declare function CatalogEntityInfoBar({ leftContent, rightContent, withSeparator, hoverEffect, isCodeBlock, }: CatalogEntityInfoBarProps): JSX.Element;