box-ui-elements-mlh
Version:
16 lines (15 loc) • 508 B
TypeScript
import './Crawler.scss';
export declare enum LoadingIndicatorSize {
SMALL = "small",
MEDIUM = "medium",
LARGE = "large",
DEFAULT = "default"
}
export interface LoadingIndicatorProps {
/** Custom class for the loading indicator */
className?: string;
/** Size of the loading indicator - small, medium, large, default */
size?: LoadingIndicatorSize;
}
declare const LoadingIndicator: ({ className, size }: LoadingIndicatorProps) => JSX.Element;
export default LoadingIndicator;