UNPKG

animated-charts

Version:

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

15 lines (14 loc) 332 B
import React from "react"; import "./pie-chart.css"; export interface PieChartProps { data: { value: number; label?: string; color?: string; }[]; width?: number; height?: number; colors?: string[]; animationDuration?: number; } export declare const PieChart: React.FC<PieChartProps>;