rds-ui-system 2.0.23 → 2.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,17 +7,13 @@ export interface ModalProps extends ButtonHTMLAttributes<HTMLButtonElement> {
7
7
  children?: ReactNode
8
8
  variant?: ModalVariant
9
9
  isDisabled?: boolean
10
- customWidth?: boolean
11
10
  width?: string
12
- customHeight?: boolean
13
11
  height?: string
14
12
  onClick?: () => void
15
13
  customClasses?: string
16
14
  }
17
15
  export declare const Modal: ({
18
16
  children,
19
- customWidth,
20
- customHeight,
21
17
  onClick,
22
18
  width,
23
19
  height,