UNPKG

jsx-md

Version:

Generate markdown files with a React-like syntax.

19 lines (18 loc) 364 B
import { Component } from ".."; /** @internal */ interface Props { children: string; src: string; title?: string; } /** * @example * ```js * render(<Image src="./image.png" title="Title"> * Alternative text * </Image>) * === * '![Alternative text](./image.png "Title")' */ export declare const Image: Component<Props>; export {};