@howone/sdk 0.3.18 → 0.3.19

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.mjs CHANGED
@@ -1769,6 +1769,8 @@ function ThemeToggle({ className }) {
1769
1769
  return /* @__PURE__ */ jsx11(
1770
1770
  "div",
1771
1771
  {
1772
+ className: `cursor-pointer ${className || ""}`,
1773
+ onClick: handleToggle,
1772
1774
  children: theme === "light" ? /* @__PURE__ */ jsx11(Icon3, { icon: "solar:sun-bold", width: 20, height: 20 }) : /* @__PURE__ */ jsx11(Icon3, { icon: "solar:moon-linear", width: 20, height: 20 })
1773
1775
  }
1774
1776
  );