UNPKG

kepler.gl

Version:

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

15 lines (14 loc) 449 B
import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { BaseProps } from './base'; export default class CursorPoint extends Component<Partial<BaseProps>> { static propTypes: { /** Set the height of the icon, ex. '16px' */ height: PropTypes.Requireable<string>; }; static defaultProps: { height: string; predefinedClassName: string; }; render(): React.JSX.Element; }