change button colors for add and remove friend

This commit is contained in:
Lee 2023-11-05 13:30:58 +00:00
parent db837d6d90
commit e7ed757194

@ -137,6 +137,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
onClick={addFriend}
tooltip={<p>Add as Friend</p>}
icon={<UserIcon width={24} height={24} />}
color="bg-green-500"
/>
)}
@ -145,6 +146,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
onClick={removeFriend}
tooltip={<p>Remove Friend</p>}
icon={<XMarkIcon width={24} height={24} />}
color="bg-red-500"
/>
)}
</>