Update loading components

This commit is contained in:
2026-02-24 22:16:46 -05:00
parent a61e7ce19a
commit 637b3a0c34
43 changed files with 1363 additions and 930 deletions

View File

@@ -1,11 +1,15 @@
/* eslint-disable @typescript-eslint/no-empty-object-type */
interface LoadingDefaultProps {
width?: string | number;
height?: string | number;
size?: number;
width?: number;
height?: number;
className?: string;
animationDuration?: number;
color?: string;
stroke?: string;
fill?: string;
ariaLabel?: string;
}
@@ -26,13 +30,16 @@ export interface LoadingDotsProps extends LoadingDefaultProps {
}
export interface CirclePulsingDotsProps {
width?: string | number;
height?: string | number;
size?: number;
width?: number;
height?: number;
className?: string;
rotationAnimationDuration?: number;
growingAnimationDuration?: number;
color?: string;
stroke?: string;
fill?: string;
ariaLabel?: string;
}
export interface CircleSpinningDotProps extends LoadingDefaultProps {