claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
19 lines • 541 B
TypeScript
declare const CircularProgress: import("svelte").Component<{
value?: number;
max?: number;
size?: string;
thickness?: string;
showValue?: boolean;
showLabel?: boolean;
label?: string;
animate?: boolean;
duration?: number;
class?: string;
reduceMotion?: boolean;
highContrast?: boolean;
showTooltip?: boolean;
status?: string;
}, {}, "">;
type CircularProgress = ReturnType<typeof CircularProgress>;
export default CircularProgress;
//# sourceMappingURL=CircularProgress.svelte.d.ts.map