UNPKG

files-ui-react-19

Version:

UI components for file uploads with React js - with React 19 support

9 lines (8 loc) 262 B
import * as React from "react"; export type DownloadHiddenProps = { downloadUrl?: string; anchorRef: React.RefObject<HTMLAnchorElement>; fileName: string; }; declare const DownloadHidden: React.FC<DownloadHiddenProps>; export default DownloadHidden;