@rtdui/editor
Version:
React rich text editor based on tiptap
9 lines (8 loc) • 379 B
TypeScript
export interface ToolbarControlProps extends React.ComponentPropsWithoutRef<"div"> {
/**
* Determines whether position: sticky styles should be added to the toolbar
* @default false
* */
sticky?: boolean;
}
export declare const ToolbarControl: import("react").ForwardRefExoticComponent<ToolbarControlProps & import("react").RefAttributes<HTMLDivElement>>;