@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
14 lines (13 loc) • 444 B
TypeScript
import type { CSSProperties } from 'react';
import { ThemeProps } from "../../hooks/useHighlight";
export interface StreamRendererProps {
children: string;
className?: string;
enableTransformer?: boolean;
fallbackClassName?: string;
language: string;
style?: CSSProperties;
theme?: ThemeProps;
}
declare const StreamRenderer: import("react").NamedExoticComponent<StreamRendererProps>;
export default StreamRenderer;