funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
17 lines (16 loc) • 363 B
TypeScript
import React from 'react';
type PieDataItem = {
label: string;
value: number;
color?: string;
};
interface PieChartProps {
data: PieDataItem[];
donut?: boolean;
showLegend?: boolean;
funcss?: string;
width?: number | string;
height?: number | string;
}
declare const ChartPie: React.FC<PieChartProps>;
export default ChartPie;