import React from 'react'; import { Activity, MessageSquare, Pill } from 'lucide-react'; interface SidebarProps { activeTab: 'dashboard' | 'chat' | 'medication'; setActiveTab: (tab: 'dashboard' | 'chat' | 'medication') => void; } const Sidebar: React.FC = ({ activeTab, setActiveTab }) => { const navItems = [ { id: 'dashboard', label: 'Dashboard', icon: Activity }, { id: 'chat', label: 'AI Companion', icon: MessageSquare }, { id: 'medication', label: 'Meds & Rewards', icon: Pill }, ] as const; return ( ); }; export default Sidebar;