@banbox/chat 1.0.6 → 1.0.7

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.js CHANGED
@@ -1627,9 +1627,9 @@ var ChatFooter = ({
1627
1627
  };
1628
1628
  var ChatFooter_default = ChatFooter;
1629
1629
  function ChatHeader({ left, right, below, className }) {
1630
- return /* @__PURE__ */ jsxs("div", { children: [
1631
- /* @__PURE__ */ jsxs("div", { className: `border-b border-[#e1e1e1] h-[64px] flex items-start justify-between px-4 pt-2.5${className ? ` ${className}` : ""}`, children: [
1632
- /* @__PURE__ */ jsx("div", { className: "flex items-start gap-3", children: left }),
1630
+ return /* @__PURE__ */ jsxs("div", { className: `border-b border-[#ededed] h-[64px]${className ? ` ${className}` : ""}`, children: [
1631
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-4 h-full", children: [
1632
+ /* @__PURE__ */ jsx("div", { className: "flex items-center gap-3", children: left }),
1633
1633
  right
1634
1634
  ] }),
1635
1635
  below && /* @__PURE__ */ jsx(Fragment, { children: below })