You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
607 B
19 lines
607 B
import * as React from 'react';
|
|
export interface TabPaneProps {
|
|
tab?: React.ReactNode;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
disabled?: boolean;
|
|
children?: React.ReactNode;
|
|
forceRender?: boolean;
|
|
closable?: boolean;
|
|
closeIcon?: React.ReactNode;
|
|
prefixCls?: string;
|
|
tabKey?: string;
|
|
id?: string;
|
|
animated?: boolean;
|
|
active?: boolean;
|
|
destroyInactiveTabPane?: boolean;
|
|
}
|
|
export default function TabPane({ prefixCls, forceRender, className, style, id, active, animated, destroyInactiveTabPane, tabKey, children, }: TabPaneProps): JSX.Element;
|