jsx-md
Version:
Generate markdown files with a React-like syntax.
20 lines (19 loc) • 385 B
TypeScript
import { Component } from "..";
/** @internal */
interface Props {
children: string | string[];
}
/**
* Wraps a string in a blockquote, automatically taking care of line breaks.
* @example
* ```js
* render(<BlockQuote>Test1{'/n'}Test2</BlockQuote>)
* ===
* `
* > Test1
* > Test2
* `
* ```
*/
export declare const BlockQuote: Component<Props>;
export {};