import { X } from 'lucide-react'; type CustomWorldAgentLauncherModalProps = { isOpen: boolean; seedText: string; isBusy: boolean; error: string | null; onClose: () => void; onSeedTextChange: (value: string) => void; onConfirm: () => void; }; export function CustomWorldAgentLauncherModal({ isOpen, seedText, isBusy, error, onClose, onSeedTextChange, onConfirm, }: CustomWorldAgentLauncherModalProps) { if (!isOpen) { return null; } return (