UNPKG

@gpa-gemstone/react-graph

Version:
12 lines (11 loc) 369 B
import { LineStyle } from './GraphContext'; import { ILegendRequiredProps } from './LegendContext'; export interface IProps extends ILegendRequiredProps { color: string; lineStyle: LineStyle; setEnabled: (arg: boolean) => void; hasNoData: boolean; label: string; } declare function LineLegend(props: IProps): JSX.Element; export default LineLegend;