dia-gov's picture
Upload 569 files
cd6f98e verified
raw
history blame
262 Bytes
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() || "");