1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73'use client';
import { IconAI, IconUser } from '@/components/ui/icons';
import { cn } from '@/lib/utils';
// Different types of message bubbles.
export function UserMessage({ children }: { children: React.ReactNode }) {
return (
<div className="group relative flex items-start md:-ml-12">
<div className="flex h-8 w-8 shrink-0 select-none items-center justify-center rounded-md border shadow-sm bg-background">
<IconUser />
</div>
<div className="ml-4 flex-1 space-y-2 overflow-hidden px-1">
{children}
</div>
</div>
);
}
export function BotMessage({
children,
className,
}: {
children: React.ReactNode;
className?: string;
}) {
return (
<div className={cn('group relative flex items-start md:-ml-12', className)}>
<div className="flex h-8 w-8 shrink-0 select-none items-center justify-center rounded-md border shadow-sm bg-primary text-primary-foreground">
<IconAI />
</div>
<div className="ml-4 flex-1 space-y-2 overflow-hidden px-1">
{children}
</div>
</div>
);
}
export function BotCard({
children,
showAvatar = true,
}: {
children: React.ReactNode;
showAvatar?: boolean;
}) {
return (
<div className="group relative flex items-start md:-ml-12">
<div
className={cn(
'flex h-8 w-8 shrink-0 select-none items-center justify-center rounded-md border shadow-sm bg-primary text-primary-foreground',
!showAvatar && 'invisible',
)}
>
<IconAI />
</div>
<div className="ml-4 flex-1 px-1">{children}</div>
</div>
);
}
export function SystemMessage({ children }: { children: React.ReactNode }) {
return (
<div
className={
'mt-2 flex items-center justify-center gap-2 text-xs text-gray-500'
}
>
<div className={'max-w-[600px] flex-initial px-2 py-2'}>{children}</div>
</div>
);
}