UNPKG

tntd

Version:

tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。

14 lines 619 B
import React from 'react'; import type { TabsProps as AntdTabsProps, TabsType } from 'antd/lib/tabs'; import { default as AntdTabs } from 'antd/lib/tabs'; export * from 'antd/lib/tabs'; export interface TabsProps extends Omit<AntdTabsProps, 'type'> { children?: Array<React.ReactElement>; upperCaseIgnore?: Array<string>; type?: TabsType | 'ladder-card' | 'editable-ladder-card'; } interface TabsComponent extends React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<AntdTabs>> { TabPane: typeof AntdTabs.TabPane; } export declare const Tabs: TabsComponent; //# sourceMappingURL=tabs.d.ts.map