UNPKG

kepler.gl

Version:

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

15 lines (14 loc) 440 B
import React, { Component } from 'react'; import PropTypes from 'prop-types'; declare class DefaultLayerIcon extends Component { static propTypes: { height: PropTypes.Requireable<string>; colors: PropTypes.Requireable<(string | null | undefined)[]>; }; static defaultProps: { height: string; predefinedClassName: string; }; render(): React.JSX.Element; } export default DefaultLayerIcon;