UNPKG

@blueprintjs/core

Version:
19 lines (18 loc) 529 B
/// <reference types="react" /> 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>;