From 415c34e3ab0aaa44e87a640fb522476a6aab6eb2 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Wed, 22 Apr 2026 11:26:19 +0000 Subject: [PATCH] fix: Lucide icon type in Sidebar --- components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Sidebar.tsx b/components/Sidebar.tsx index 9560fde..098eed9 100644 --- a/components/Sidebar.tsx +++ b/components/Sidebar.tsx @@ -9,7 +9,7 @@ interface SidebarProps { onChange: (tab: Tab) => void } -const navItems: { id: Tab; icon: React.ComponentType<{ size?: number; color?: string }> }[] = [ +const navItems: { id: Tab; icon: any }[] = [ { id: 'home', icon: Home }, { id: 'rooms', icon: LayoutGrid }, { id: 'sensors', icon: Thermometer },