dialog-layout-props.ts 206 Bytes
Newer Older
hucy's avatar
hucy committed
1
interface DialogLayoutProps {
2
  title?: any;
hucy's avatar
hucy committed
3
  width?: number;
4 5
  maxWidth?: number;
  minWidth?: number;
hucy's avatar
hucy committed
6
  height?: number;
7 8
  maxHeight?: number;
  minHeight?: number;
hucy's avatar
hucy committed
9 10 11
}

export type { DialogLayoutProps };