"use client"; import { Button } from "@mdxui/primitives/button"; import { X } from "lucide-react"; import Image from "next/image"; interface ChatHeaderProps { onClose: () => void; title?: string; avatar?: string; } export function ChatHeader({ onClose, title = "Support", avatar = "/org-ai.png", }: ChatHeaderProps) { return (
{title}

{title}

Typically replies instantly

); }