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 811cbbd commit 0b9b7e6Copy full SHA for 0b9b7e6
index.d.ts
@@ -20,19 +20,16 @@ export interface IconProps {
20
className: string;
21
role: string;
22
}
23
-export interface TabComponentProps {
+export interface PanelProps {
24
id: string;
25
isSelected: boolean;
26
api: Instance;
27
+}
28
+export interface TabComponentProps extends PanelProps {
29
tabProps: TabProps;
30
iconProps?: IconProps;
31
children: React.ReactNode;
32
-export interface PanelProps {
- id: string;
33
- isSelected: boolean;
34
- api: Instance;
35
-}
36
export interface Options {
37
/** * default value is "ltr"*/
38
direction?: 'rtl' | 'ltr';
0 commit comments