UNPKG

@blueprintjs/core

Version:
18 lines (17 loc) 497 B
import * as React from "react"; import { IProps } from "../../common/props"; export interface ITabProps extends IProps { /** * Whether the tab is disabled. * @default false */ isDisabled?: boolean; } export declare class Tab extends React.Component<ITabProps, {}> { static defaultProps: ITabProps; static displayName: string; render(): JSX.Element; } export declare const TabFactory: React.ComponentFactory<ITabProps & { children?: React.ReactNode; }, Tab>;