@copilotkit/react-ui
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
11 lines (8 loc) • 299 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { Components } from 'react-markdown';
type MarkdownProps = {
content: string;
components?: Components;
};
declare const Markdown: ({ content, components }: MarkdownProps) => react_jsx_runtime.JSX.Element;
export { Markdown };