elseware-ui 2.27.1 → 2.27.2
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/build/index.es.js +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -3688,7 +3688,7 @@ const TitleBanner = ({ title = "Title", level = 1, rightSection, className, ...r
|
|
|
3688
3688
|
};
|
|
3689
3689
|
|
|
3690
3690
|
function Brand({ src, alt, className, ...rest }) {
|
|
3691
|
-
const content = src ? jsx("img", { src: src, alt: alt }) : "Brand";
|
|
3691
|
+
const content = src ? jsx("img", { src: src, alt: alt }) : alt || "Brand";
|
|
3692
3692
|
return (jsx("div", { ...rest, className: cn$1("inline-flex h-12", className), children: content }));
|
|
3693
3693
|
}
|
|
3694
3694
|
|
package/build/index.js
CHANGED
|
@@ -3715,7 +3715,7 @@ const TitleBanner = ({ title = "Title", level = 1, rightSection, className, ...r
|
|
|
3715
3715
|
};
|
|
3716
3716
|
|
|
3717
3717
|
function Brand({ src, alt, className, ...rest }) {
|
|
3718
|
-
const content = src ? jsxRuntime.jsx("img", { src: src, alt: alt }) : "Brand";
|
|
3718
|
+
const content = src ? jsxRuntime.jsx("img", { src: src, alt: alt }) : alt || "Brand";
|
|
3719
3719
|
return (jsxRuntime.jsx("div", { ...rest, className: cn$1("inline-flex h-12", className), children: content }));
|
|
3720
3720
|
}
|
|
3721
3721
|
|