import { IconPlus, IconLogout } from '@tabler/icons-react' import type { Session } from '../lib/types' interface SessionSidebarProps { sessions: Session[] activeSessionId: string | null onSelect: (id: string) => void onCreate: () => void onLogout: () => void } export function SessionSidebar({ sessions, activeSessionId, onSelect, onCreate, onLogout, }: SessionSidebarProps) { return (