@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
14 lines • 546 B
TypeScript
export interface MarkdownEditorProps {
value: string;
onChange: (value: string) => void;
label?: string;
placeholder?: string;
disabled?: boolean;
minHeight?: string;
maxHeight?: string;
showPreview?: boolean;
showHelp?: boolean;
className?: string;
}
export default function MarkdownEditor({ value, onChange, label, placeholder, disabled, minHeight, maxHeight, showPreview, showHelp, className, }: MarkdownEditorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MarkdownEditor.d.ts.map