Interface ParagraphRendererProps

interface ParagraphRendererProps {
    children: ReactNode;
    pre?: boolean;
    raw: string;
    text: string;
    tokens: Token[];
    type: "paragraph";
}

Hierarchy (view full)

Properties

children: ReactNode
pre?: boolean
raw: string
text: string
tokens: Token[]
type: "paragraph"