feat(theme): add optional icon property to PropSidebarItemLink type

This commit is contained in:
Johannes Liermann 2025-12-02 15:06:30 +01:00
parent 75e9502483
commit 9428b8a207

View File

@ -199,6 +199,7 @@ export type PropSidebarItemCategory = Expand<
export type PropSidebarItemLink = SidebarItemLink & {
docId?: string;
unlisted?: boolean;
icon?: string;
};
export type PropSidebarItemHtml = SidebarItemHtml;