kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
15 lines (14 loc) • 476 B
TypeScript
import React from 'react';
import { ComponentType, MouseEvent } from 'react';
export declare type ToolbarItemProps = {
id?: string;
key?: string;
label: string;
className?: string;
active?: boolean;
onClose?: () => void;
onClick: ((event: MouseEvent<HTMLDivElement>) => void) | null;
icon?: ComponentType<any>;
};
declare const ToolbarItem: React.MemoExoticComponent<(props: ToolbarItemProps) => React.JSX.Element>;
export default ToolbarItem;