Spaces:
Runtime error
Runtime error
File size: 262 Bytes
cd6f98e | 1 2 3 4 5 6 7 8 9 10 11 | export const get_avatar = (user?: {
name?: string | null;
email?: string | null;
image?: string | null;
}) =>
user?.image ||
"https://avatar.vercel.sh/" +
(user?.email || "") +
".svg?text=" +
(user?.name?.substr(0, 2).toUpperCase() || "");
|