UNPKG

kepler.gl

Version:

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

11 lines (10 loc) 284 B
import React from 'react'; import { RGBColor } from '@kepler.gl/types'; interface DatasetLabelType { dataset: { color: RGBColor; label: string; }; } declare const DatasetLabel: ({ dataset }: DatasetLabelType) => React.JSX.Element; export default DatasetLabel;