gradio-pr-bot's picture
Upload folder using huggingface_hub
83fcc57 verified
import type { FileData } from "@gradio/client";
export interface DownloadButtonProps {
value: FileData | null;
variant: "primary" | "secondary" | "stop";
size: "sm" | "lg";
icon: FileData | null;
}
export interface DownloadButtonEvents {
click: never;
}