import { Box, Text } from "ink" export function SwitchProviderConfirm(props: { currentLabel: string; targetLabel: string }) { return ( Switch upstream provider Current: {props.currentLabel} Target: {props.targetLabel} ⚠ The runtime will restart and active connections will be interrupted. Press Enter to confirm or Escape to cancel ) }