@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
15 lines (14 loc) • 542 B
TypeScript
import React from "react";
import { PreviewSize } from "../PropertyPreviewProps";
type StorageThumbnailProps = {
storagePathOrDownloadUrl: string;
storeUrl: boolean;
size: PreviewSize;
interactive?: boolean;
};
/**
* @group Preview components
*/
export declare const StorageThumbnail: React.FunctionComponent<StorageThumbnailProps>;
export declare function StorageThumbnailInternal({ storeUrl, interactive, storagePathOrDownloadUrl, size }: StorageThumbnailProps): import("react/jsx-runtime").JSX.Element | null;
export {};