UNPKG

@wulperstudio/cms

Version:
13 lines (12 loc) 398 B
import React from 'react'; type ImageWork = FileList | File | string | null | undefined; export interface DrawerAssetFixedPropsModel { image: ImageWork; hideCloseIcon?: boolean; hideBackIcon?: boolean; hideEditIcon?: boolean; onClose?: () => void; onEdit?: () => void; } export declare const DrawerAssetFixed: React.FunctionComponent<DrawerAssetFixedPropsModel>; export {};