@pronto-tools-and-more/components 14.3.0 → 14.5.0
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/main.js +3 -2
- package/dist/parts/Image/Image.d.ts +2 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -1139,9 +1139,10 @@ var IfLength = ({
|
|
1139
1139
|
var Image = ({
|
1140
1140
|
src,
|
1141
1141
|
alt,
|
1142
|
-
loading
|
1142
|
+
loading,
|
1143
|
+
className
|
1143
1144
|
}) => {
|
1144
|
-
return /* @__PURE__ */ React.createElement("img", { src, alt, loading });
|
1145
|
+
return /* @__PURE__ */ React.createElement("img", { src, alt, loading, className });
|
1145
1146
|
};
|
1146
1147
|
|
1147
1148
|
// src/parts/Language/Language.ts
|