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