UNPKG

@txdfe/at

Version:

一个设计体系组件库

12 lines (9 loc) 280 B
/// <reference types="react" /> import * as React from 'react'; export interface LinkProps extends React.HTMLAttributes<HTMLElement> { prefix?: string; href?: string; target?: string; type?: string; } export default class Link extends React.Component<LinkProps, any> {}