claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
14 lines • 384 B
TypeScript
declare const BarChart: import("svelte").Component<{
data?: any[];
width?: number;
height?: number;
margin?: Record<string, any>;
color?: string;
animate?: boolean;
showValues?: boolean;
xLabel?: string;
yLabel?: string;
}, {}, "">;
type BarChart = ReturnType<typeof BarChart>;
export default BarChart;
//# sourceMappingURL=BarChart.svelte.d.ts.map