epn-ui
Version:
Дизайн система кабинета ВМ
22 lines (21 loc) • 871 B
TypeScript
/// <reference types="react" />
import type { TabsProps } from 'antd/es/tabs';
export interface INavigationTabsProps {
activeKey?: TabsProps['activeKey'];
animated?: TabsProps['animated'];
centered?: TabsProps['centered'];
defaultActiveKey?: TabsProps['defaultActiveKey'];
tabBarExtraContent?: TabsProps['tabBarExtraContent'];
tabBarGutter?: TabsProps['tabBarGutter'];
tabBarStyle?: TabsProps['tabBarStyle'];
tabPosition?: TabsProps['tabPosition'];
destroyInactiveTabPane?: TabsProps['destroyInactiveTabPane'];
children: React.ReactNode;
style?: TabsProps['style'];
className?: TabsProps['className'];
emptyContent?: boolean;
renderTabBar?: TabsProps['renderTabBar'];
onChange?: TabsProps['onChange'];
onTabClick?: TabsProps['onTabClick'];
onTabScroll?: TabsProps['onTabScroll'];
}