kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
15 lines (14 loc) • 381 B
TypeScript
import React, { Component } from 'react';
import { BaseProps } from './base';
export default class Copy extends Component<Partial<BaseProps>> {
static defaultProps: {
height: string;
viewBox: string;
predefinedClassName: string;
style: {
fill: string;
stroke: string;
};
};
render(): React.JSX.Element;
}