UNPKG

@gpa-gemstone/react-graph

Version:
14 lines (13 loc) 404 B
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;