kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
16 lines (15 loc) • 493 B
TypeScript
import React, { Component } from 'react';
import PropTypes from 'prop-types';
export default class IconLayerIcon extends Component {
static propTypes: {
/** Set the height of the icon, ex. '16px' */
height: PropTypes.Requireable<string>;
colors: PropTypes.Requireable<(string | null | undefined)[]>;
};
static defaultProps: {
height: string;
predefinedClassName: string;
totalColor: number;
};
render(): React.JSX.Element;
}