UNPKG

animated-charts

Version:

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

11 lines (10 loc) 254 B
import React from 'react'; export interface DonutChartProps { data: number[]; labels: string[]; colors?: string[]; size?: number; strokeWidth?: number; } declare const DonutChart: React.FC<DonutChartProps>; export default DonutChart;