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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIButton.tsx +2 -1
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
|
|
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;
|