UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

13 lines (12 loc) 376 B
import * as React from "react"; import { IHeatmapLegendItem } from "../../typings/legend"; export interface IHeatmapLegendProps { series: IHeatmapLegendItem[]; isSmall: boolean; format?: string; numericSymbols: string[]; position: string; } export default class HeatmapLegend extends React.PureComponent<IHeatmapLegendProps> { render(): JSX.Element; }