mui-tiptap
Version:
A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap
17 lines (16 loc) • 652 B
TypeScript
export interface RichTextFieldClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element when variant="standard". */
standard: string;
/** Styles applied to the root element when variant="outlined". */
outlined: string;
/** Styles applied to the menu bar element. */
menuBar: string;
/** Styles applied to the menu bar content element. */
menuBarContent: string;
/** Styles applied to the content element. */
content: string;
}
export type RichTextFieldClassKey = keyof RichTextFieldClasses;
export declare const richTextFieldClasses: RichTextFieldClasses;