@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
14 lines (13 loc) • 404 B
TypeScript
import * as React from 'react';
import { LegendStyle } from './DataLegend';
interface IProps {
OnClick?: (e: React.MouseEvent<HTMLDivElement>, legendLabel: string) => void;
Label: string;
Color?: string;
LegendSymbol?: LegendStyle;
Enabled?: boolean;
HasNoData?: boolean;
ToolTipText?: string;
}
declare const LegendEntry: (props: IProps) => null;
export default LegendEntry;