funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
24 lines (23 loc) • 478 B
TypeScript
import React from 'react';
type DataItem = {
label: string;
[key: string]: any;
};
type ChartSeries = {
dataKey: string;
label?: string;
color?: string;
};
interface BarsProps {
data: DataItem[];
series: ChartSeries[];
showGrid?: boolean;
funcss?: string;
showLegend?: boolean;
showXAxis?: boolean;
showYAxis?: boolean;
barRadius?: number;
barSize?: number;
}
declare const Bars: React.FC<BarsProps>;
export default Bars;