UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

14 lines 481 B
export declare const description = "A basic pie chart with customizable data"; interface ChartPieBasicProps { data: Array<{ name: string; value: number; }>; title?: string; description?: string; className?: string; colors?: string[]; } export declare function ChartPieBasic({ data, title, description, className, colors }: ChartPieBasicProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=chart-pie-basic.d.ts.map