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.mjs
CHANGED
|
@@ -474,7 +474,8 @@ function UIButton(props) {
|
|
|
474
474
|
if (!label) {
|
|
475
475
|
def = { ...def, borderRadius: 20 };
|
|
476
476
|
}
|
|
477
|
-
let
|
|
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;
|