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