UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 248 B
import { AnchorProps } from 'antd'; import { FC } from 'react'; import { ANCHOR } from '../../Types'; export interface IAnchor { ctype: typeof ANCHOR; props: AnchorProps; } declare const Anchor: FC<IAnchor>; export default Anchor;