sixseconds-modules 3.0.26 → 3.0.28

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.es.js CHANGED
@@ -1248,19 +1248,19 @@ function UserProfile({ t: t2, userData, setInitialState, extraMenuOptions, route
1248
1248
  /* @__PURE__ */ jsxs("ul", { className: "ssh-profile__menu", children: [
1249
1249
  extraMenuOptions?.components,
1250
1250
  extraMenuOptions?.isViewProfile && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("viewProfile"), children: [
1251
- /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1251
+ /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1252
1252
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("View Profile") })
1253
1253
  ] }),
1254
1254
  extraMenuOptions?.isEditProfile && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: goEdit, children: [
1255
- /* @__PURE__ */ jsx(SVG.UserEdit, { className: "ssh-profile__item-icon" }),
1255
+ /* @__PURE__ */ jsx(SVG.UserEdit, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1256
1256
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Edit Profile") })
1257
1257
  ] }),
1258
1258
  extraMenuOptions?.isChangePassword && /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("changePassword"), children: [
1259
- /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1259
+ /* @__PURE__ */ jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1260
1260
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Change Password") })
1261
1261
  ] }),
1262
1262
  /* @__PURE__ */ jsxs("li", { className: "ssh-profile__item ssh-profile__item--danger", onClick: () => setToggle("logout"), children: [
1263
- /* @__PURE__ */ jsx(SVG.Logout, { className: "ssh-profile__item-icon" }),
1263
+ /* @__PURE__ */ jsx(SVG.Logout, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1264
1264
  /* @__PURE__ */ jsx("span", { className: "ssh-profile__item-label", children: t2("Logout") })
1265
1265
  ] })
1266
1266
  ] })