import { ChevronLeft } from "lucide-react"; import { Button } from "../ui/Button"; import type { ReactNode } from "react"; interface ConnectionFormShellProps { onBack: () => void; onTest: () => void; onSave: () => void; testLoading?: boolean; saveLoading?: boolean; children: ReactNode; } export function ConnectionFormShell({ onBack, onTest, onSave, testLoading, saveLoading, children, }: ConnectionFormShellProps) { return (