File size: 492 Bytes
89682f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"use client";
export const setEmojiFavicon = (emoji: string) => {
if (typeof document === "undefined") return;
const href = `data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>${emoji}</text></svg>`;
const link =
document.querySelector("link[rel*='icon']") ||
document.createElement("link");
link.setAttribute("rel", "icon");
link.setAttribute("href", href);
document.head.appendChild(link);
};
|