import { Settings, Sparkles, PanelLeftOpen, Bug } 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; onShowVersionModal: () => void; t: TFunction; }; export default function SidebarCollapsed({ onExpand, onShowSettings, updateAvailable, onShowVersionModal, t, }: SidebarCollapsedProps) { return (
{/* Expand button with brand logo */}
{/* Settings */} {/* Report Issue */} {/* Discord */} {/* Update indicator */} {updateAvailable && ( )}
); }