import * as React from 'react'; import './Crawler.scss'; export 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; } const LoadingIndicator = ({ className = '', size = LoadingIndicatorSize.DEFAULT }: LoadingIndicatorProps) => (