mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 00:53:14 +00:00
edits
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
export default function Avatar({
|
||||
avatar,
|
||||
size,
|
||||
className,
|
||||
}: {
|
||||
avatar: string;
|
||||
size?: 'SMALL' | 'MEDIUM' | 'LARGE';
|
||||
className: string;
|
||||
}) {
|
||||
return <div className={'mt-4 text-2xl'}>{avatar}</div>;
|
||||
return <div className={className}>{avatar}</div>;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,10 @@ const ConversationBubble = forwardRef<
|
||||
: 'flex-row-reverse self-end '
|
||||
} ${className}`}
|
||||
>
|
||||
<Avatar avatar={type === 'QUESTION' ? '🧑💻' : '🦖'}></Avatar>
|
||||
<Avatar
|
||||
className="mt-4 text-2xl"
|
||||
avatar={type === 'QUESTION' ? '🧑💻' : '🦖'}
|
||||
></Avatar>
|
||||
<div
|
||||
className={`${
|
||||
type === 'QUESTION'
|
||||
|
||||
Reference in New Issue
Block a user