From 41d0555d314f9f68d3cdcc45f454f13b952b4581 Mon Sep 17 00:00:00 2001 From: Lukas Senionis Date: Sat, 29 Mar 2025 15:01:51 +0200 Subject: [PATCH] fix(SidebarNavigation): change title to ReactNode type (#117) --- src/components/SidebarNavigation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SidebarNavigation.ts b/src/components/SidebarNavigation.ts index 3459844..e3aa64b 100644 --- a/src/components/SidebarNavigation.ts +++ b/src/components/SidebarNavigation.ts @@ -16,7 +16,7 @@ export interface SidebarNavigationPage { } export interface SidebarNavigationProps { - title?: string; + title?: ReactNode; pages: (SidebarNavigationPage | 'separator')[]; showTitle?: boolean; disableRouteReporting?: boolean;