react-crud-mobile 1.3.166 → 1.3.167
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/react-crud-mobile.cjs.development.js +5 -0
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +5 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIButton.tsx +4 -0
@@ -458,6 +458,11 @@ function UIButton(props) {
|
|
458
458
|
if (size) {
|
459
459
|
def = _extends({}, def, BUTTONS_SIZE[size]);
|
460
460
|
}
|
461
|
+
if (!label) {
|
462
|
+
def = _extends({}, def, {
|
463
|
+
borderRadius: 20
|
464
|
+
});
|
465
|
+
}
|
461
466
|
var css = style('button', def);
|
462
467
|
if (!css.width) {
|
463
468
|
var h = css.height;
|