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