UNPKG

@blueprintjs/core

Version:
17 lines (16 loc) 507 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, Tab>;