| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- "use client";
- export function ConversationHeader() {
- return (
- <div className="h-16 border-b border-gray-200 flex items-center justify-between px-4 flex-shrink-0">
- <div className="flex items-center gap-2">
- <span className="font-semibold text-gray-800">All chats</span>
- <svg
- className="w-4 h-4 text-gray-400"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M19 9l-7 7-7-7"
- />
- </svg>
- </div>
- <div className="flex items-center gap-2">
- <span className="text-sm text-gray-600">All</span>
- <svg
- className="w-4 h-4 text-gray-400"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M19 9l-7 7-7-7"
- />
- </svg>
- </div>
- </div>
- );
- }
|