kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
14 lines (13 loc) • 469 B
TypeScript
import React, { ComponentType } from 'react';
import { IconProps } from '@kepler.gl/cloud-providers';
interface UploadAnimationProps {
icon?: ComponentType<IconProps> | null;
}
export declare const UploadAnimation: React.FC<UploadAnimationProps>;
interface StatusPanelProps {
error?: string | null;
isLoading?: boolean;
providerIcon?: ComponentType<IconProps> | null;
}
declare const StatusPanel: React.FC<StatusPanelProps>;
export default StatusPanel;