import { X, Home, AlertTriangle, Stethoscope, Video, Pill, Wrench, Heart, Clock, Zap, Info, Settings, Image, Phone, MessageSquare, Briefcase, BookOpen, GraduationCap, ShieldAlert } from 'lucide-react'; import { Link } from 'react-router-dom'; interface MenuSheetProps { isOpen: boolean; onClose: () => void; } const MenuSheet = ({ isOpen, onClose }: MenuSheetProps) => { if (!isOpen) return null; const menuGroups = [ { title: "Protocolos y Clínico", items: [ { to: "/soporte-vital", label: "Soporte Vital", icon: }, { to: "/patologias", label: "Patologías", icon: }, { to: "/via-aerea", label: "Vía Aérea", icon: }, { to: "/parto", label: "Emergencias Obstétricas", icon: }, ] }, { title: "Herramientas Operativas", items: [ { to: "/herramientas", label: "Panel de Calculadoras", icon: }, { to: "/material", label: "Material y Checklists", icon: }, { to: "/escena", label: "Gestión de Escena", icon: