UNPKG

react-sparklines-typescript

Version:

react-sparklines rewritten in typescript and modern react patterns

12 lines (11 loc) 305 B
import { FC, CSSProperties } from "react"; interface SparklinesBarsProps { points?: any[]; height?: number; style?: CSSProperties; barWidth?: number; margin?: number; onMouseMove?: () => void; } declare const SparklinesBars: FC<SparklinesBarsProps>; export default SparklinesBars;