UNPKG

cl-react-graph

Version:
17 lines (16 loc) 374 B
import { FC } 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: FC<IProps>; export default Legend;