import { Code, MessageSquare, Plus, Terminal } from 'lucide-react'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; interface Props { onAddPane: (kind: 'chat' | 'terminal' | 'coder') => void; disabled?: boolean; } // v1.8 row-2 right cluster: mirrors the desktop Workspace.tsx Split dropdown. // Terminal + Coder items pass through to addSplitPane which creates panes // of the appropriate kind. export function NewPaneMenu({ onAddPane, disabled }: Props) { return ( onAddPane('chat')}> New chat onAddPane('terminal')}> New terminal onAddPane('coder')}> New coder ); }