mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-12-01 01:23:14 +00:00
simplifies the APIKeyModal communication and state management, adds
conversation components
This commit is contained in:
9
frontend/src/Avatar.tsx
Normal file
9
frontend/src/Avatar.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function Avatar({
|
||||
avatar,
|
||||
size,
|
||||
}: {
|
||||
avatar: string;
|
||||
size?: 'SMALL' | 'MEDIUM' | 'LARGE';
|
||||
}) {
|
||||
return <div>{avatar}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user