diff --git a/docs/components/side-bar.tsx b/docs/components/side-bar.tsx
index 4cdaeabe94..0fd000a059 100644
--- a/docs/components/side-bar.tsx
+++ b/docs/components/side-bar.tsx
@@ -206,8 +206,11 @@ function SidebarListItem({
{/* Vertical line overlay */}
- {listItem.children?.map((child) =>
- child.group ? (
+ {listItem.children?.map((child) => {
+ const icon = child.icon({
+ className: "text-stone-950 dark:text-white",
+ });
+ return child.group ? (
-
-
-
+ {icon &&
{icon}
}
{child.title}
{child.isNew &&
}
{child.isUpdated &&
}
- ),
- )}
+ );
+ })}
)}