xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
17 lines • 604 B
TypeScript
export declare const description = "A bar chart with negative values";
interface ChartBarNegativeProps {
data: Array<{
month: string;
visitors: number;
}>;
title?: string;
description?: string;
className?: string;
dataKey?: string;
positiveColor?: string;
negativeColor?: string;
height?: number;
}
export declare function ChartBarNegative({ data, title, description, className, dataKey, positiveColor, negativeColor, height }: ChartBarNegativeProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=chart-bar-negative.d.ts.map