@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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/ui/chat/ChatHeader.tsx +3 -3
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:
|
|
1632
|
-
/* @__PURE__ */ jsx("div", { className: "flex items-
|
|
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 })
|