UNPKG

@expofp/floorplan

Version:

Interactive floor plan library for expos and events

15 lines 479 B
import './HeatmapLegend.scss'; import React from 'react'; export interface HeatmapLegendTick { value: number; color: string; } export interface HeatmapLegendProps { ticks: HeatmapLegendTick[]; ariaLabel: string; className?: string; style?: React.CSSProperties; } declare const HeatmapLegend: ({ ticks, ariaLabel, className, style }: HeatmapLegendProps) => React.JSX.Element | null; export default HeatmapLegend; //# sourceMappingURL=HeatmapLegend.d.ts.map