UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

15 lines (14 loc) 388 B
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;