react-crud-mobile 1.3.560 → 1.3.561

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.mjs CHANGED
@@ -474,7 +474,8 @@ function UIButton(props) {
474
474
  if (!label) {
475
475
  def = { ...def, borderRadius: 20 };
476
476
  }
477
- let css = { ...def, ...style("button") };
477
+ let pure = style("button", {});
478
+ let css = { ...style("button", def), ...pure };
478
479
  if (!css.width) {
479
480
  let h = css.height;
480
481
  if (typeof h === "number") css.minWidth = h;