UNPKG

animated-charts

Version:

Animated chart web components for all frameworks (React, Angular, Vue, HTML)

10 lines (9 loc) 223 B
import React from 'react'; export interface LineChartProps { data: number[]; labels: string[]; color?: string; height?: number; } declare const LineChart: React.FC<LineChartProps>; export default LineChart;