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