claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
25 lines • 705 B
TypeScript
interface Props {
value?: number;
size?: 'sm' | 'md' | 'lg' | 'xl';
thickness?: number;
showValue?: boolean;
animate?: boolean;
duration?: number;
trackColor?: string;
progressColor?: string;
textColor?: string;
textSize?: string | null;
ariaLabel?: string;
ariaValueText?: string | null;
label?: string;
color?: string;
children?: {
value?: (props: {
displayValue: number;
}) => void;
};
}
declare const CircularProgress: import("svelte").Component<Props, {}, "">;
type CircularProgress = ReturnType<typeof CircularProgress>;
export default CircularProgress;
//# sourceMappingURL=CircularProgress.svelte.d.ts.map