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