fix(icon-list): border-left icon regular missing

This commit is contained in:
Elian Doran
2025-12-15 11:25:42 +02:00
parent b370512893
commit fb70029091

View File

@@ -2102,8 +2102,8 @@ const icons: Icon[] = [
type_of_icon: "REGULAR" type_of_icon: "REGULAR"
}, },
{ {
name: "border-inline-start", name: "border-left",
slug: "border-inline-start-regular", slug: "border-left-regular",
category_id: 111, category_id: 111,
type_of_icon: "REGULAR" type_of_icon: "REGULAR"
}, },
@@ -10259,9 +10259,9 @@ function getIconClass(icon: Icon) {
return `bxl-${icon.name}`; return `bxl-${icon.name}`;
} else if (icon.type_of_icon === "SOLID") { } else if (icon.type_of_icon === "SOLID") {
return `bxs-${icon.name}`; return `bxs-${icon.name}`;
} else { }
return `bx-${icon.name}`; return `bx-${icon.name}`;
}
} }
for (const icon of icons) { for (const icon of icons) {