import { Box, Text } from 'ink' import { OutputLine } from './OutputLine' import React from 'react' import { getTheme } from '../../utils/theme' import { Out as BashOut } from './BashTool' type Props = { content: Omit verbose: boolean } function BashToolResultMessage({ content, verbose }: Props): React.JSX.Element { const { stdout, stdoutLines, stderr, stderrLines } = content return ( {stdout !== '' ? ( ) : null} {stderr !== '' ? ( ) : null} {stdout === '' && stderr === '' ? (   ⎿   (No content) ) : null} ) } export default BashToolResultMessage