UNPKG

cl-react-graph

Version:
17 lines (16 loc) 385 B
import * as React from 'react'; import { IHistogramDataSet } from './Histogram'; interface IProps { className?: string; theme?: string[]; data: { bins: string[]; counts: IHistogramDataSet[]; }; onSelect: (label: string) => void; visible: { [key: string]: boolean; }; } declare const Legend: React.SFC<IProps>; export default Legend;