import { Settings, Sparkles, PanelLeftOpen, Bug, AlertTriangle } from 'lucide-react'; import type { TFunction } from 'i18next'; const DISCORD_INVITE_URL = 'https://discord.gg/buxwujPNRE'; const GITHUB_ISSUES_URL = 'https://github.com/siteboon/claudecodeui/issues/new'; function DiscordIcon({ className }: { className?: string }) { return ( ); } type SidebarCollapsedProps = { onExpand: () => void; onShowSettings: () => void; updateAvailable: boolean; restartRequired: boolean; onShowVersionModal: () => void; t: TFunction; }; export default function SidebarCollapsed({ onExpand, onShowSettings, updateAvailable, restartRequired, onShowVersionModal, t, }: SidebarCollapsedProps) { return (
); }