UNPKG

quick-ui-design

Version:

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

13 lines (12 loc) 361 B
import { DrawerProps } from 'antd'; import { FC } from 'react'; import { DRAWER, TComponentProps } from '../../Types'; interface IChildren extends Omit<DrawerProps, 'children'> { children: TComponentProps[]; } export interface IDrawer { ctype: typeof DRAWER; props: IChildren; } declare const Drawer: FC<IDrawer>; export default Drawer;