UNPKG

infocharts

Version:

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

17 lines 423 B
import React from 'react'; import './styles/infocharts.scss'; interface DataPoint { item: string; value: number; } interface SparklineProps { title?: string; data: DataPoint[]; strokeColor?: string; strokeWidth?: number; backgroundColor?: string; foregroundColor?: string; } declare const SparkLine: React.FC<SparklineProps>; export default SparkLine; //# sourceMappingURL=SparkLine.d.ts.map