react-crud-mobile 1.3.561 → 1.3.563
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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIIcon.tsx +2 -1
package/dist/index.mjs
CHANGED
|
@@ -324,7 +324,8 @@ function UIIcon({ scope }) {
|
|
|
324
324
|
ant: AntDesign,
|
|
325
325
|
entypo: Entypo,
|
|
326
326
|
evil: EvilIcons,
|
|
327
|
-
material: MaterialCommunityIcons
|
|
327
|
+
material: MaterialCommunityIcons,
|
|
328
|
+
ma: MaterialCommunityIcons
|
|
328
329
|
};
|
|
329
330
|
let library = Utils4.nvl(scope.original.library, "ion");
|
|
330
331
|
let icon = name.trim();
|
|
@@ -342,7 +343,7 @@ function UIIcon({ scope }) {
|
|
|
342
343
|
css = { ...css, ...scope.getStyle() };
|
|
343
344
|
}
|
|
344
345
|
if (size) css.fontSize = size;
|
|
345
|
-
return /* @__PURE__ */ jsx7(Aux, { size, name, style: css });
|
|
346
|
+
return /* @__PURE__ */ jsx7(Aux, { size, name: icon, style: css });
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
// src/elements/core/UIButton.tsx
|