@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
11 lines (10 loc) • 309 B
TypeScript
import { ILegendRequiredProps } from './LegendContext';
export interface IProps extends ILegendRequiredProps {
unitLabel?: string;
minValue: number;
minColor: string;
maxValue: number;
maxColor: string;
}
declare function HeatLegend(props: IProps): JSX.Element;
export default HeatLegend;