react-crud-mobile 1.3.354 → 1.3.356
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 +3 -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 +3 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIIcon.tsx +3 -1
@@ -363,10 +363,13 @@ function UIIcon(_ref) {
|
|
363
363
|
var library = Utils.nvl(scope.original.library, 'ion');
|
364
364
|
var Aux = libs[library];
|
365
365
|
var css = scope.getStyle('icon');
|
366
|
+
var fontSize = scope.part('size', 20);
|
367
|
+
var size = scope.part('iconSize', fontSize);
|
366
368
|
if ((_scope$original = scope.original) != null && _scope$original["transient"]) {
|
367
369
|
css = _extends({}, css, scope.getStyle());
|
368
370
|
}
|
369
371
|
return /*#__PURE__*/jsx(Aux, {
|
372
|
+
size: size,
|
370
373
|
name: name,
|
371
374
|
style: css
|
372
375
|
});
|