revdev-components 0.175.0 → 0.177.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/build/attributor/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/build/styles.css +1 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -5677,8 +5677,8 @@ var s$2 = {"root":"index-module_root__UuWET","link":"index-module_link__qD-Ss"};
|
|
|
5677
5677
|
var AlfaAttributor = function (_a) {
|
|
5678
5678
|
var className = _a.className, options = _a.options;
|
|
5679
5679
|
return options.length ? (React.createElement("div", { className: classNames(s$2.root, className) }, options.map(function (_a, i) {
|
|
5680
|
-
var icon = _a.icon,
|
|
5681
|
-
return (React.createElement(IconDivision, { key: href || i, icon: icon }, href ? (React.createElement(AppLink, { className: s$2.link, href: href },
|
|
5680
|
+
var icon = _a.icon, content = _a.content, href = _a.href;
|
|
5681
|
+
return (React.createElement(IconDivision, { key: href || i, icon: icon }, href ? (React.createElement(AppLink, { className: s$2.link, href: href }, content)) : (content)));
|
|
5682
5682
|
}))) : null;
|
|
5683
5683
|
};
|
|
5684
5684
|
|
package/build/styles.css
CHANGED