@blueprintjs/core
Version:
Core styles & components
20 lines (19 loc) • 533 B
TypeScript
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 & {
children?: React.ReactNode;
}, TabPanel>;