@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
12 lines (11 loc) • 415 B
TypeScript
/// <reference types="react" />
import { IPropsPie } from '.';
interface PieData {
name: string;
value: number;
}
export default function Pie<T extends PieData>({ data, width, height, innerRadius, outerRadius, cx, cy, paddingAngle, cornerRadius, dataKey, isLoading, minValue, colors, decimals, hasLabel, children }: IPropsPie<T> & {
minValue?: number;
colors?: string[];
}): JSX.Element;
export {};