UNPKG

kepler.gl

Version:

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

13 lines (12 loc) 325 B
import React, { Component } from 'react'; import { BaseProps } from './base'; export default class Info extends Component<Partial<BaseProps> & { stroke?: string; }> { static defaultProps: { height: string; predefinedClassName: string; stroke: string; }; render(): React.JSX.Element; }