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.js CHANGED
@@ -502,7 +502,8 @@ function UIButton(props) {
502
502
  if (!label) {
503
503
  def = { ...def, borderRadius: 20 };
504
504
  }
505
- let css = { ...def, ...style("button") };
505
+ let pure = style("button", {});
506
+ let css = { ...style("button", def), ...pure };
506
507
  if (!css.width) {
507
508
  let h = css.height;
508
509
  if (typeof h === "number") css.minWidth = h;