UNPKG

quick-ui-design

Version:

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

13 lines (12 loc) 357 B
import { SpaceProps } from 'antd'; import { FC } from 'react'; import { SPACE, TComponentProps } from '../../Types'; interface ISpaceProps extends Omit<SpaceProps, 'children'> { children: TComponentProps[]; } export interface ISpace { ctype: typeof SPACE; props: ISpaceProps; } declare const Space: FC<ISpace>; export default Space;