UNPKG

dce-charts

Version:
16 lines (15 loc) 343 B
/** * Download box container that wraps a chart * @author Gabe Abrams * @author Jackson Parsells */ import React from 'react'; declare type Props = { title: string; chartData: { [k: string]: string | number; }[]; children: React.ReactNode; }; declare const DownloadBox: React.FC<Props>; export default DownloadBox;