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
@@ -449,6 +449,11 @@ function UIButton(props) {
|
|
449
449
|
if (size) {
|
450
450
|
def = _extends({}, def, BUTTONS_SIZE[size]);
|
451
451
|
}
|
452
|
+
if (!label) {
|
453
|
+
def = _extends({}, def, {
|
454
|
+
borderRadius: 20
|
455
|
+
});
|
456
|
+
}
|
452
457
|
var css = style('button', def);
|
453
458
|
if (!css.width) {
|
454
459
|
var h = css.height;
|