kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (12 loc) • 361 B
TypeScript
import React from 'react';
import { ColorChangeHandler } from 'react-color';
import { HexColor } from '@kepler.gl/types';
declare type CustomPickerProps = {
color: HexColor;
theme: {
panelBackground: string;
};
onChange: ColorChangeHandler;
};
declare const _default: React.FC<Omit<CustomPickerProps, "theme">>;
export default _default;