mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
eb7f8c7ef1
* refactor: change anchor to fc for the cssinjs prepare * fix: fix anchor test
17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
import InternalAnchor from './Anchor';
|
|
import AnchorLink from './AnchorLink';
|
|
|
|
export { AnchorProps } from './Anchor';
|
|
export { AnchorLinkProps } from './AnchorLink';
|
|
|
|
type InternalAnchorType = typeof InternalAnchor;
|
|
|
|
interface AnchorInterface extends InternalAnchorType {
|
|
Link: typeof AnchorLink;
|
|
}
|
|
|
|
const Anchor = InternalAnchor as AnchorInterface;
|
|
|
|
Anchor.Link = AnchorLink;
|
|
export default Anchor;
|