/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { Box, Text } from 'ink'; import { theme } from '../../semantic-colors.js'; interface ProfileChangeMessageProps { profileName: string; } export const ProfileChangeMessage: React.FC = ({ profileName, }) => ( {`Responding with: ${profileName}`} );