@activecollab/components
Version:
ActiveCollab Components
17 lines • 803 B
TypeScript
import React from "react";
export interface SpinnerLoaderProps {
/** Loader circumference size */
radius?: number;
/** Stroke width of the loader */
stroke?: number;
/** Active color of spinning loader */
activeStrokeColor?: string;
/** Percentage of the circle which the active color takes */
activeColorPercentage?: "25%" | "50%" | "75%";
/** Inactive color of spinning loader */
inactiveStrokeColor?: string;
/** Rotate speed of animation in seconds */
rotateDurationInSeconds?: number;
}
export declare const SpinnerLoader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & SpinnerLoaderProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=SpinnerLoader.d.ts.map