@ahmiao666/ahmiao-react-dialog-element
Version:
16 lines (15 loc) • 433 B
TypeScript
import React from "react";
import "./DialogCustom.scss";
export interface DialogCustomProps {
open: boolean;
width?: number | string;
title?: string;
showIcon?: boolean;
showClose?: boolean;
onCancel?: () => void;
children?: React.ReactNode;
icon?: any;
style?: React.CSSProperties;
}
export declare function DialogCustom(props: DialogCustomProps): React.ReactPortal;
export default DialogCustom;