import { X } from "lucide-react"; interface ConnectionLineProps { success?: boolean; } export function ConnectionLine({ success = true }: Readonly) { if (success) { return (
); } return (
); }