Update loading components
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user