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