UNPKG

phantomcms

Version:

PhantomCMS is provider of on page text editing functionality for React components.

10 lines (9 loc) 289 B
import React from "react"; interface PhantomImageProps extends React.ImgHTMLAttributes<HTMLImageElement> { src: string | { src: string; setSrc: Function; }; } export default function PhantomImage({ src, ...args }: PhantomImageProps): React.ReactElement; export {};