claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
24 lines • 826 B
TypeScript
interface Props {
value?: number;
min?: number;
max?: number;
showValue?: boolean;
showLabel?: boolean;
label?: string;
description?: string;
size?: 'sm' | 'md' | 'lg';
variant?: 'default' | 'gradient' | 'striped' | 'pulse';
color?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | string;
trackColor?: string;
height?: number | string;
borderRadius?: number | string;
animationDuration?: number;
animationType?: 'ease' | 'bounce' | 'elastic';
indeterminate?: boolean;
indeterminateSpeed?: number;
showAnimation?: boolean;
}
declare const AnimatedProgress: import("svelte").Component<Props, {}, "">;
type AnimatedProgress = ReturnType<typeof AnimatedProgress>;
export default AnimatedProgress;
//# sourceMappingURL=AnimatedProgress.svelte.d.ts.map