kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
21 lines (20 loc) • 1.07 kB
TypeScript
import React from 'react';
import { BaseProps } from '../common/icons';
declare type StyledPanelTabProps = {
active?: boolean;
};
export declare type PanelItem = {
id: string;
label: string;
iconComponent: React.ComponentType<Partial<BaseProps>>;
};
export declare type PanelTabProps = {
isActive: boolean;
panel: PanelItem;
onClick: (e: React.MouseEvent<HTMLDivElement>) => void;
};
export declare const StyledPanelTab: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").FastOmit<import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
}>, never>, StyledPanelTabProps>>;
export declare function PanelTabFactory(): React.FC<PanelTabProps>;
export default PanelTabFactory;