jsx-md
Version:
Generate markdown files with a React-like syntax.
17 lines (16 loc) • 363 B
TypeScript
import { Component, PropsWithChildren } from "..";
/** @internal */
interface Props {
reference: string;
}
/**
* @example
* ```js
* render(<ReferenceImage reference="logo">
* Alternative text
* </ReferenceImage>)
* ===
* '![Alternative text][logo]'
*/
export declare const ReferenceImage: Component<PropsWithChildren<Props>>;
export {};