UNPKG

modulo-editor

Version:

A flexible and extensible block-based editor for React applications

10 lines (9 loc) 266 B
import { GalleryData, GalleryImage } from "../types"; declare const ImageCard: React.FC<{ image: GalleryImage; layout: GalleryData["layout"]; readOnly?: boolean; onRemove: (id: string) => void; removeTitle?: string; }>; export default ImageCard;