dialog-layout-props.ts 206 Bytes
interface DialogLayoutProps {
  title?: any;
  width?: number;
  maxWidth?: number;
  minWidth?: number;
  height?: number;
  maxHeight?: number;
  minHeight?: number;
}

export type { DialogLayoutProps };