UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 296 B
import * as React from 'react'; export interface AnchorLinkProps { prefixCls?: string; href: string; target?: string; title: React.ReactNode; children?: React.ReactNode; className?: string; } declare const AnchorLink: React.FC<AnchorLinkProps>; export default AnchorLink;