import { ClipboardList, FileText, Pill, AlertTriangle, FlaskConical, FolderOpen, Send } from 'lucide-react'
import type { ViewId } from '../types/pmr'
interface NavItem {
id: ViewId
label: string
shortLabel: string
icon: React.ReactNode
}
const navItems: NavItem[] = [
{ id: 'summary', label: 'Summary', shortLabel: 'Summary', icon: },
{ id: 'consultations', label: 'Consultations', shortLabel: 'Consult', icon: },
{ id: 'medications', label: 'Medications', shortLabel: 'Meds', icon: },
{ id: 'problems', label: 'Problems', shortLabel: 'Issues', icon: },
{ id: 'investigations', label: 'Investigations', shortLabel: 'Tests', icon: },
{ id: 'documents', label: 'Documents', shortLabel: 'Docs', icon: },
{ id: 'referrals', label: 'Referrals', shortLabel: 'Refer', icon: },
]
interface MobileBottomNavProps {
activeView: ViewId
onViewChange: (view: ViewId) => void
}
export function MobileBottomNav({ activeView, onViewChange }: MobileBottomNavProps) {
const handleNavClick = (view: ViewId) => {
onViewChange(view)
window.location.hash = view
}
return (
)
}