mui-tiptap
Version:
A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap
13 lines (12 loc) • 507 B
TypeScript
export interface HeadingWithAnchorComponentClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the container element. */
container: string;
/** Styles applied to the link element. */
link: string;
/** Styles applied to the link icon. */
linkIcon: string;
}
export type HeadingWithAnchorComponentClassKey = keyof HeadingWithAnchorComponentClasses;
export declare const headingWithAnchorComponentClasses: HeadingWithAnchorComponentClasses;