UNPKG

infocharts

Version:

<img src="https://raw.githubusercontent.com/garethslinn/public_infocharts/refs/heads/main/logo.svg" />

17 lines 444 B
import React from 'react'; import './styles/infocharts.scss'; type BenchmarkChartProps = { data: { label: string; actual: number; benchmark: number; }[]; title?: string; background?: string; foreground?: string; barColor?: string; targetColor?: string; }; declare const BenchmarkChart: React.FC<BenchmarkChartProps>; export default BenchmarkChart; //# sourceMappingURL=BenchmarkChart.d.ts.map