@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
14 lines • 488 B
TypeScript
import * as React from 'react';
export interface IRenderDialogProps {
isOpen: boolean;
dialogTitle?: string | React.ReactNode;
dialogActions?: JSX.Element;
onDismiss?: (open?: boolean) => void;
minWidth?: number | string;
maxWidth?: number | string;
className?: string;
minHeight?: number | string;
maxHeight?: number | string;
}
export declare const RenderDialog: React.FunctionComponent<IRenderDialogProps>;
//# sourceMappingURL=RenderDialog.d.ts.map