kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
23 lines (22 loc) • 758 B
TypeScript
import React, { ComponentType, MouseEventHandler } from 'react';
import { TooltipProps } from 'react-tooltip';
import { BaseProps } from '../common/icons';
export declare type PanelHeaderActionIcon = ComponentType<Partial<BaseProps>>;
export interface PanelHeaderActionProps {
id?: string;
tooltip?: string;
hoverColor?: string;
className?: string;
active?: boolean;
flush?: boolean;
disabled?: boolean;
onClick?: MouseEventHandler;
tooltipType?: TooltipProps['type'];
IconComponent: PanelHeaderActionIcon;
testId?: string;
}
declare function PanelHeaderActionFactory(): React.FC<PanelHeaderActionProps>;
declare namespace PanelHeaderActionFactory {
var deps: any[];
}
export default PanelHeaderActionFactory;