nice-ui
Version:
React design system, components, and utilities
12 lines (11 loc) • 546 B
TypeScript
import * as React from 'react';
import { MdastProps } from './types';
export interface Props extends Pick<MdastProps, 'to' | 'isCompact' | 'isFullWidth' | 'hideFootnotes' | 'isExpandable' | 'expand' | 'fontSize' | 'onDoubleClick' | 'scaleUpEmojiSrc' | 'placeholdersAfter' | 'placeholdersAfterLength' | 'maxPlaceholders' | 'LoadingBlock'> {
src?: string | null;
/**
* Parse Markdown source only to inline elements and render
* only inline elements.
*/
inline?: boolean;
}
export declare const Markdown: React.FC<Props>;