@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
15 lines (14 loc) • 467 B
TypeScript
import * as React from 'react';
interface IProps {
height: number;
width: number;
location: 'bottom' | 'right';
graphHeight: number;
graphWidth: number;
RequestLegendWidth: (width: number, requesterID: string) => void;
RequestLegendHeight: (height: number) => void;
HideDisabled: boolean;
}
declare function Legend(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Legend>;
export default _default;