dce-charts
Version:
Harvard DCE's React Charting Wrapper
16 lines (15 loc) • 343 B
TypeScript
/**
* 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;