@redocly/theme
Version:
Shared UI components lib
10 lines (9 loc) • 312 B
TypeScript
import type { JSX } from 'react';
type MermaidProps = {
diagramHtml: string;
'data-source'?: string;
'data-hash'?: string;
className?: string;
};
export declare function Mermaid({ diagramHtml, 'data-source': dataSource, 'data-hash': dataHash, className, }: MermaidProps): JSX.Element;
export {};