UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

13 lines 512 B
export interface RichTextEditorProps { value: string; onChange: (value: string) => void; label?: string; placeholder?: string; disabled?: boolean; minHeight?: string; maxHeight?: string; showToolbar?: boolean; className?: string; } export default function RichTextEditor({ value, onChange, label, placeholder, disabled, minHeight, maxHeight, showToolbar, className, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=RichTextEditor.d.ts.map