UNPKG

react-sleek

Version:

React Sleek Component Library

11 lines (10 loc) 211 B
import { CSSProperties } from 'react'; export interface IChartPoint { x: number; y: number; } export interface IChartSerie { label: string; pathStyle: CSSProperties; points: IChartPoint[]; }