quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 316 B
TypeScript
import { LinkProps } from 'antd/es/typography/Link';
import { FC } from 'react';
import { TYPOGRAPHY_LINK } from '../../../Types';
export interface ITypographyLink {
ctype: typeof TYPOGRAPHY_LINK;
props: LinkProps;
}
declare const TypographyLink: FC<ITypographyLink>;
export default TypographyLink;