chore: update ant-design dependencies and add new icon types
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
import * as React from 'react';
|
||||
export interface AnchorLinkBaseProps {
|
||||
prefixCls?: string;
|
||||
href: string;
|
||||
target?: string;
|
||||
title: React.ReactNode;
|
||||
className?: string;
|
||||
replace?: boolean;
|
||||
}
|
||||
export interface AnchorLinkProps extends AnchorLinkBaseProps {
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
declare const AnchorLink: React.FC<AnchorLinkProps>;
|
||||
export default AnchorLink;
|
||||
Reference in New Issue
Block a user