UNPKG

@ucloud-fe/react-components

Version:
10 lines (9 loc) 275 B
import { HTMLAttributes } from 'react'; declare type LinkProps = { /** a 标签的链接 */ href?: string; /** 打开方式 */ target?: string; } & HTMLAttributes<HTMLAnchorElement>; declare const Link: (props: LinkProps) => JSX.Element; export default Link;