chat-small-fixes

This commit is contained in:
Alex
2023-02-27 16:35:12 +00:00
parent b5cb3f994b
commit 5cd9f8f6e0
2 changed files with 12 additions and 10 deletions

View File

@@ -5,5 +5,5 @@ export default function Avatar({
avatar: string;
size?: 'SMALL' | 'MEDIUM' | 'LARGE';
}) {
return <div>{avatar}</div>;
return <div className={'mt-4 text-2xl'}>{avatar}</div>;
}