UNPKG

quick-ui-design

Version:

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

13 lines (12 loc) 337 B
import { TagProps } from 'antd'; import { FC } from 'react'; import { TAG, TComponentProps } from '../../Types'; interface IChildren extends Omit<TagProps, 'children'> { children: TComponentProps[]; } export interface ITag { ctype: typeof TAG; props: IChildren; } declare const Tag: FC<ITag>; export default Tag;