15 lines
388 B
TypeScript
15 lines
388 B
TypeScript
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;
|