UNPKG

markdown-flow-ui

Version:

A React UI library for rendering markdown with interactive flow components, typewriter effects, and plugin support

12 lines (11 loc) 289 B
import { default as React } from 'react'; export interface MermaidChartProps { chart: string; messages?: { emptyChart?: string; loading?: string; badge?: string; }; } declare const MermaidChart: React.FC<MermaidChartProps>; export default MermaidChart;