File size: 596 Bytes
fee5554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { MessageCircle } from "lucide-react";

const ChatHeader = () => {
  return (
    <header className="bg-header-bg border-b border-header-border px-4 py-3 flex items-center gap-3 header-shadow">
      <div className="w-8 h-8 bg-avatar-bg rounded-full flex items-center justify-center">
        <MessageCircle className="w-4 h-4 text-avatar-fg" />
      </div>
      <div>
        <h1 className="text-header-fg font-semibold text-lg">AI Assistant</h1>
        <p className="text-muted-foreground text-xs">Always here to help</p>
      </div>
    </header>
  );
};

export default ChatHeader;