mui-tiptap
Version:
A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap
17 lines (16 loc) • 679 B
TypeScript
export interface FieldContainerClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if variant="outlined". */
outlined: string;
/** Styles applied to the root element if variant="standard". */
standard: string;
/** Styles applied to the root element if focused=true. */
focused: string;
/** Styles applied to the root element if disabled=true. */
disabled: string;
/** Styles applied to the notched outline element. */
notchedOutline: string;
}
export type FieldContainerClassKey = keyof FieldContainerClasses;
export declare const fieldContainerClasses: FieldContainerClasses;