fix: avatar explicit color for icon

This commit is contained in:
2025-06-04 19:33:28 +02:00
parent 8b5a5744ab
commit 6164b77bee

View File

@ -27,7 +27,7 @@ const Avatar: FC<AvatarProps> = ({ iconSize = 32, className, avatarId }) => {
alt="profile" alt="profile"
/> />
) : ( ) : (
<User size={iconSize} /> <User size={iconSize} className="text-gray-800" />
)} )}
</div> </div>
); );