We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f2c92 commit 21cce97Copy full SHA for 21cce97
src/modules/Tab/Tab.d.ts
@@ -1,7 +1,7 @@
1
import * as React from 'react'
2
3
import { ForwardRefComponent, SemanticShorthandItem } from '../../generic'
4
-import { TabPaneProps } from './TabPane'
+import TabPane, { TabPaneProps } from './TabPane'
5
6
export interface TabProps extends StrictTabProps {
7
[key: string]: any
@@ -58,6 +58,8 @@ export interface StrictTabProps {
58
renderActiveOnly?: boolean
59
}
60
61
-declare const Tab: ForwardRefComponent<TabProps, HTMLDivElement>
+declare const Tab: ForwardRefComponent<TabProps, HTMLDivElement> & {
62
+ Pane: typeof TabPane
63
+}
64
65
export default Tab
0 commit comments