quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
13 lines (12 loc) • 354 B
TypeScript
import { EmptyProps } from 'antd';
import { FC } from 'react';
import { EMPTY, TComponentProps } from '../../Types';
interface IChildren extends Omit<EmptyProps, 'children'> {
children?: TComponentProps[];
}
export interface IEmpty {
ctype: typeof EMPTY;
props: IChildren;
}
declare const Empty: FC<IEmpty>;
export default Empty;