kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (16 loc) • 482 B
TypeScript
import React, { Component } from 'react';
import PropTypes from 'prop-types';
export default class ArrowDown extends Component {
static propTypes: {
/** Set the height of the icon, ex. '16px' */
height: PropTypes.Requireable<string>;
style: PropTypes.Requireable<any>;
};
static defaultProps: {
height: string;
width: string;
predefinedClassName: string;
viewBox: string;
};
render(): React.JSX.Element;
}