mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface TabContentProps {
|
|
children?: React.ReactNode;
|
|
for: string | number;
|
|
visibleStyle?: object;
|
|
isVisible?: boolean;
|
|
renderActiveTabContentOnly?: boolean;
|
|
disableInlineStyles?: boolean;
|
|
className?: string;
|
|
visibleClassName?: string;
|
|
style?: object;
|
|
}
|
|
|
|
export class TabContent extends React.Component<TabContentProps> {}
|