files-ui-react-19
Version:
UI components for file uploads with React js - with React 19 support
24 lines (23 loc) • 553 B
TypeScript
import { Localization, UPLOADSTATUS } from "@files-ui/core";
export interface FileMosaicStatusProps {
/**
* whether show a valid or rejected message
* by def. valid is false (if not present, is false too)
*/
valid?: boolean | null;
/**
*
*/
uploadStatus?: UPLOADSTATUS;
/**
* A message for the status item
*/
message?: string;
/**
* language to be used
* for now
* only English and Spanish is supported
*/
localization?: Localization;
style?: React.CSSProperties;
}