@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
10 lines (9 loc) • 319 B
TypeScript
import React, { FC } from 'react';
import { StorageRef } from '../../../../../common/types';
interface PropsStorageRefImage {
storageRef: StorageRef | string;
className?: string;
onClick?: React.MouseEventHandler<HTMLDivElement>;
}
export declare const StorageRefImage: FC<PropsStorageRefImage>;
export {};