tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
15 lines • 723 B
TypeScript
import React from 'react';
import type { AnchorProps as AntdAnchorProps, AnchorLinkProps } from 'antd/lib/anchor';
import { default as AntdAnchor } from 'antd/lib/anchor';
import { default as AntdAnchorLink } from 'antd/lib/anchor/AnchorLink';
export * from 'antd/lib/anchor';
export interface AnchorProps extends AntdAnchorProps {
tdAnchor?: boolean;
}
declare const AnchorLink: React.ForwardRefExoticComponent<AnchorLinkProps & React.RefAttributes<AntdAnchorLink>>;
interface AnchorComponent extends React.ForwardRefExoticComponent<AnchorProps & React.RefAttributes<AntdAnchor>> {
Link: typeof AnchorLink;
}
export declare const Anchor: AnchorComponent;
export default Anchor;
//# sourceMappingURL=anchor.d.ts.map