UNPKG

296 BTypeScriptView Raw
1import * as React from 'react';
2export interface AnchorLinkProps {
3 prefixCls?: string;
4 href: string;
5 target?: string;
6 title: React.ReactNode;
7 children?: React.ReactNode;
8 className?: string;
9}
10declare const AnchorLink: React.FC<AnchorLinkProps>;
11export default AnchorLink;