@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 398 B
TypeScript
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 {};