kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (12 loc) • 414 B
TypeScript
import React from 'react';
export declare type ProgressBarProps = {
percent: string;
height?: number;
isLoading: boolean;
barColor: string;
trackColor?: string;
theme: any;
};
/** @type {React.FunctionComponent<ProgressBarProps>} */
declare const ProgressBar: ({ percent, height, isLoading, barColor, trackColor, theme }: ProgressBarProps) => React.JSX.Element;
export default ProgressBar;