UNPKG

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
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;