UNPKG

xlibs-components

Version:

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

15 lines 508 B
export declare const description = "A basic bar chart with customizable data"; interface ChartBarBasicProps { data: Array<{ name: string; total: number; }>; title?: string; description?: string; className?: string; dataKey?: string; color?: string; } export declare function ChartBarBasic({ data, title, description, className, dataKey, color }: ChartBarBasicProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=chart-bar-basic.d.ts.map