@easykit/design
Version:
Easy kit design components
17 lines (16 loc) • 483 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import type * as React from 'react';
export type EventCallback = () => void;
export interface DialogProps extends PropsWithChildren {
visible?: boolean;
onCancel?: EventCallback;
onOk?: EventCallback;
className?: string;
maskClosable?: boolean;
closable?: boolean;
title?: string;
description?: string;
footer?: React.ReactNode;
loading?: boolean;
}
export declare const Dialog: FC<DialogProps>;