UNPKG

@nvq/flowtoken

Version:

Animated React components for streaming text and markdown with GitHub theme syntax highlighting (forked from flowtoken)

11 lines (10 loc) 306 B
import React from "react"; interface ShikiCodeRendererProps { codeContent: string; language: string; animation?: string; animationDuration?: string; animationTimingFunction?: string; } declare const ShikiCodeRenderer: React.FC<ShikiCodeRendererProps>; export default ShikiCodeRenderer;