reactjs-tiptap-editor
Version:
A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React
14 lines (13 loc) • 312 B
TypeScript
interface ISize {
width: number | string;
height: number | string;
}
interface IProps {
width: number | string;
maxWidth?: number | string;
height: number | string;
onOk: (arg: ISize) => void;
children: React.ReactNode;
}
export declare const SizeSetter: React.FC<IProps>;
export {};