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