UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

16 lines (15 loc) 568 B
import React from "react"; import { PreviewSize } from "../PropertyPreviewProps"; type StorageThumbnailProps = { storagePathOrDownloadUrl: string; storeUrl: boolean; size: PreviewSize; interactive?: boolean; fill?: boolean; }; /** * @group Preview components */ export declare const StorageThumbnail: React.FunctionComponent<StorageThumbnailProps>; export declare function StorageThumbnailInternal({ storeUrl, interactive, storagePathOrDownloadUrl, size, fill }: StorageThumbnailProps): import("react/jsx-runtime").JSX.Element | null; export {};