import { FileClock, Gauge, LogOut, RadioTower, Settings, Wrench, Router } from 'lucide-react'; import logoIcon from '@/assets/logo-icon.png'; const items = [ ['Painel', Gauge], ['Controladores', Router], ['Configuração UDP2RAW', RadioTower], ['Provisionamento', Wrench], ['Registos de Atividade', FileClock], ['Posto de Trabalho', Settings], ] as const; type SidebarProps = { active: string; onSelect: (value: string) => void; onLogout: () => void; }; export function Sidebar({ active, onSelect, onLogout, }: SidebarProps) { return ( ); }