@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
12 lines (11 loc) • 369 B
TypeScript
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;