diff --git a/src/components/common/Avatar.jsx b/src/components/common/Avatar.jsx index 02e6e275..5c3f25e6 100644 --- a/src/components/common/Avatar.jsx +++ b/src/components/common/Avatar.jsx @@ -10,7 +10,7 @@ function hashString(str) { return hash; } -const Avatar = ({ firstName, lastName, size = "sm" }) => { +const Avatar = ({ firstName, lastName, size = "sm", classAvatar }) => { // Combine firstName and lastName to create a unique string for hashing const fullName = `${firstName} ${lastName}`; @@ -51,7 +51,7 @@ const Avatar = ({ firstName, lastName, size = "sm" }) => { return (
-
+
{generateAvatarText(firstName, lastName)}