xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
17 lines • 645 B
TypeScript
export declare const description = "A horizontal bar chart with customizable data";
interface ChartBarHorizontalProps {
data: Array<{
[key: string]: string | number;
}>;
title?: string;
description?: string;
className?: string;
dataKey?: string;
color?: string;
height?: string;
aspectRatio?: string;
}
export declare function ChartBarHorizontal({ data, title, description, className, dataKey, color, // ✅ THEMED: Use project's primary green color
height, aspectRatio }: ChartBarHorizontalProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-bar-horizontal.d.ts.map