UNPKG

@canes/ecb-tas-feature

Version:
10 lines (9 loc) 297 B
/// <reference types="react" /> declare type DownloadButtonProps = { url: string; filename: string; label?: string; variant?: "text" | "contained"; }; export default function DownloadButton({ filename, url, label, variant, }: DownloadButtonProps): JSX.Element; export {};