@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.
@@ -6188,10 +6188,10 @@ const Actions = (props) => {
6188
6188
  };
6189
6189
 
6190
6190
  const Padding = (props) => {
6191
- const { children, className } = props, rest = __rest(props, ["children", "className"]);
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("div", Object.assign({}, rest, { className: classNames__default.default("ui-m-4", className) }), children)
6194
+ React__namespace.default.createElement(Box, Object.assign({ m: "l" }, rest), children)
6195
6195
  );
6196
6196
  };
6197
6197