@phosphor-icons/web
Version:
A clean and friendly icon family for web
10 lines (8 loc) • 356 B
JavaScript
var head = document.getElementsByTagName("head")[0];
for (const weight of ["regular", "thin", "light", "bold", "fill", "duotone"]) {
var link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = `https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/${weight}/style.css`;
head.appendChild(link);
}