@selfdecode/sd-component-library 2.42.35 → 2.42.36
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { SxProps } from "rebass";
|
|
2
3
|
export interface ModalProps {
|
|
3
4
|
/**
|
|
4
5
|
* The theme variant to use for the modal's styles.
|
|
@@ -64,4 +65,8 @@ export interface ModalProps {
|
|
|
64
65
|
* content is shown at the top
|
|
65
66
|
*/
|
|
66
67
|
popUpHeight?: string | string[];
|
|
68
|
+
/**
|
|
69
|
+
* Additional props for the modal outer container.
|
|
70
|
+
*/
|
|
71
|
+
containerSx?: SxProps["sx"];
|
|
67
72
|
}
|