UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

14 lines (11 loc) 277 B
import {FunctionComponent} from 'react'; export type ProgressBarProps = { percent: string, height?: number, isLoading: boolean, barColor: any; trackColor?: any; theme: object; }; const ProgressBar: FunctionComponent<ProgressBarProps>; export default ProgressBar;