@blueprintjs/core
Version:
Core styles & components
19 lines (18 loc) • 527 B
TypeScript
/// <reference types="react" />
import * as React from "react";
import { IProps } from "../../common/props";
export interface ITabPanelProps extends IProps {
/**
* Element ID.
*/
_id?: string;
/**
* The ID of the tab this panel corresponds to.
*/
_tabId?: string;
}
export declare class TabPanel extends React.Component<ITabPanelProps, {}> {
static displayName: string;
render(): JSX.Element;
}
export declare const TabPanelFactory: React.ComponentFactory<ITabPanelProps, TabPanel>;