files-ui-react-19
Version:
UI components for file uploads with React js - with React 19 support
20 lines (19 loc) • 649 B
TypeScript
import { Localization, UPLOADSTATUS } from "@files-ui/core";
export interface FileMosaicMainLayerProps {
darkMode?: boolean;
deleteIcon?: boolean;
onDelete?: Function;
valid: boolean | null | undefined;
uploadStatus?: UPLOADSTATUS;
localization?: Localization;
sizeFormatted?: string;
imageIcon: boolean;
onSee: ((imageSource: string | undefined) => void) | undefined;
videoIcon: boolean;
onWatch: ((videoSource: File | undefined) => void) | undefined;
downloadIcon: boolean;
onDownload: Function | undefined;
infoIcon: boolean;
onOpenInfo: Function | undefined;
isActive?: boolean;
}