UNPKG

editium

Version:

A powerful and feature-rich React rich text editor component built with Slate.js, featuring comprehensive formatting options, tables, images, find & replace, and more

10 lines (9 loc) 260 B
import React from 'react'; import { ImageElement } from './types'; interface ResizableImageProps { element: ImageElement; attributes: any; children: any; } declare const ResizableImage: React.FC<ResizableImageProps>; export default ResizableImage;