From 9428b8a2079098d70d6580abc4f1e7516c960d1d Mon Sep 17 00:00:00 2001 From: Johannes Liermann Date: Tue, 2 Dec 2025 15:06:30 +0100 Subject: [PATCH] feat(theme): add optional icon property to PropSidebarItemLink type --- packages/docusaurus-plugin-content-docs/src/sidebars/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts b/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts index 550243b90e..8468a4fe0d 100644 --- a/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts +++ b/packages/docusaurus-plugin-content-docs/src/sidebars/types.ts @@ -199,6 +199,7 @@ export type PropSidebarItemCategory = Expand< export type PropSidebarItemLink = SidebarItemLink & { docId?: string; unlisted?: boolean; + icon?: string; }; export type PropSidebarItemHtml = SidebarItemHtml;