export function getPlaceholderAvatar(avatar: string | null | undefined, name: string | null) { return avatar ? avatar : "https://eu.ui-avatars.com/api/?background=fff&color=f9f9f9&bold=true&background=000000&name=" + encodeURIComponent(name || ""); }