UNPKG

react-sparklines-typescript

Version:

react-sparklines rewritten in typescript and modern react patterns

13 lines (12 loc) 323 B
import { FC, CSSProperties } from "react"; export interface SparklinesCurveProps { color?: string; divisor?: number; height?: number; margin?: number; points?: any; style?: CSSProperties; width?: number; } declare const SparklinesCurve: FC<SparklinesCurveProps>; export default SparklinesCurve;