UNPKG

captide

Version:

Get millions of financial documents into your AI app 🚀

12 lines (11 loc) • 291 B
import React from 'react'; interface DownloadButtonProps { onClick: () => void; style?: React.CSSProperties; className?: string; } /** * A simple icon-only download button component */ declare const DownloadButton: React.FC<DownloadButtonProps>; export default DownloadButton;