@luscii-healthtech/web-ui 30.10.1 → 30.10.3
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.development.js +2 -2
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -6188,10 +6188,10 @@ const Actions = (props) => {
|
|
|
6188
6188
|
};
|
|
6189
6189
|
|
|
6190
6190
|
const Padding = (props) => {
|
|
6191
|
-
const { children
|
|
6191
|
+
const { children } = props, rest = __rest(props, ["children"]);
|
|
6192
6192
|
return (
|
|
6193
6193
|
// Using margin here, because adjacent margins collapse.
|
|
6194
|
-
React__namespace.default.createElement(
|
|
6194
|
+
React__namespace.default.createElement(Box, Object.assign({ m: "l" }, rest), children)
|
|
6195
6195
|
);
|
|
6196
6196
|
};
|
|
6197
6197
|
|