import React from 'react'; import { Text, Box } from 'ink'; interface ErrorMessageProps { text: string; } export const ErrorMessage: React.FC = ({ text }) => { const prefix = '✕ '; const prefixWidth = prefix.length; return ( {prefix} {text} ); };