diff --git a/src/components/common/Avatar.jsx b/src/components/common/Avatar.jsx index 81e16e9c..390eecbc 100644 --- a/src/components/common/Avatar.jsx +++ b/src/components/common/Avatar.jsx @@ -1,6 +1,6 @@ import React, { useState, useEffect } from "react"; -const Avatar = ({ firstName, lastName }) => { +const Avatar = ({ firstName, lastName, size = "sm" }) => { // Combine firstName and lastName to create a unique string for hashing const fullName = `${firstName} ${lastName}`;