kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
15 lines (14 loc) • 466 B
TypeScript
import React from 'react';
import { RGBColor } from '@kepler.gl/types';
export declare type LayerGroupColorPickerProps = {
slug: string;
color: RGBColor;
onColorChange: (pd: RGBColor) => void;
extraMarginRight: boolean;
disabled: boolean;
};
declare function LayerGroupColorPickerFactory(): React.FC<LayerGroupColorPickerProps>;
declare namespace LayerGroupColorPickerFactory {
var deps: any[];
}
export default LayerGroupColorPickerFactory;