UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

10 lines (9 loc) 440 B
import { CSSProperties, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; export interface TabContentProps { animated?: boolean | undefined; animatedWithMargin?: boolean; destroyInactiveTabPane?: boolean | undefined; style?: CSSProperties | undefined; } declare const TabContent: ForwardRefExoticComponent<PropsWithoutRef<TabContentProps> & RefAttributes<HTMLDivElement>>; export default TabContent;