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.cjs.js CHANGED
@@ -1266,19 +1266,19 @@ function UserProfile({ t: t2, userData, setInitialState, extraMenuOptions, route
1266
1266
  /* @__PURE__ */ jsxRuntime.jsxs("ul", { className: "ssh-profile__menu", children: [
1267
1267
  extraMenuOptions?.components,
1268
1268
  extraMenuOptions?.isViewProfile && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("viewProfile"), children: [
1269
- /* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1269
+ /* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1270
1270
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("View Profile") })
1271
1271
  ] }),
1272
1272
  extraMenuOptions?.isEditProfile && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: goEdit, children: [
1273
- /* @__PURE__ */ jsxRuntime.jsx(SVG.UserEdit, { className: "ssh-profile__item-icon" }),
1273
+ /* @__PURE__ */ jsxRuntime.jsx(SVG.UserEdit, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1274
1274
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Edit Profile") })
1275
1275
  ] }),
1276
1276
  extraMenuOptions?.isChangePassword && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item", onClick: () => setToggle("changePassword"), children: [
1277
- /* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon" }),
1277
+ /* @__PURE__ */ jsxRuntime.jsx(SVG.CheckedPerson, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1278
1278
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Change Password") })
1279
1279
  ] }),
1280
1280
  /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "ssh-profile__item ssh-profile__item--danger", onClick: () => setToggle("logout"), children: [
1281
- /* @__PURE__ */ jsxRuntime.jsx(SVG.Logout, { className: "ssh-profile__item-icon" }),
1281
+ /* @__PURE__ */ jsxRuntime.jsx(SVG.Logout, { className: "ssh-profile__item-icon", style: { opacity: 0.5 } }),
1282
1282
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "ssh-profile__item-label", children: t2("Logout") })
1283
1283
  ] })
1284
1284
  ] })