kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
15 lines (14 loc) • 479 B
TypeScript
import React, { CSSProperties } from 'react';
import { BaseComponentProps } from '../types';
export declare type LoadingWrapperProps = BaseComponentProps & {
borderColor?: CSSProperties['borderColor'];
};
export declare type LoadingSpinnerProps = {
size?: number;
color?: string;
borderColor?: CSSProperties['borderColor'];
strokeWidth?: number;
gap?: number;
};
declare const LoadingSpinner: React.FC<LoadingSpinnerProps>;
export default LoadingSpinner;