sag_components 2.0.0-beta37 → 2.0.0-beta39
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.
package/dist/index.js
CHANGED
|
@@ -5094,13 +5094,16 @@ function _extends() {
|
|
|
5094
5094
|
}, _extends.apply(null, arguments);
|
|
5095
5095
|
}
|
|
5096
5096
|
|
|
5097
|
-
const LinnerContainer$1 = dt.div
|
|
5097
|
+
const LinnerContainer$1 = dt.div.attrs(props => ({
|
|
5098
|
+
style: {
|
|
5099
|
+
backgroundColor: props.$backgroundColor,
|
|
5100
|
+
width: props.$width,
|
|
5101
|
+
height: props.$height
|
|
5102
|
+
}
|
|
5103
|
+
}))`
|
|
5098
5104
|
font-family: "Poppins", sans-serif;
|
|
5099
5105
|
display: flex;
|
|
5100
5106
|
justify-content: space-between;
|
|
5101
|
-
width: ${props => props.$width || 'auto'};
|
|
5102
|
-
height: ${props => props.$height || 'auto'};
|
|
5103
|
-
background-color: ${props => props.$backgroundColor};
|
|
5104
5107
|
padding: 50px 40px 30px;
|
|
5105
5108
|
`;
|
|
5106
5109
|
const DataBoxWrap = dt.div`
|