UNPKG

animated-charts

Version:

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

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