Files
Onewon-claude-code/src/components/messages/UserToolResultMessage/UserToolCanceledMessage.tsx
daniel nakov 8bf1bb8913 Initial commit
2025-02-25 00:08:45 -05:00

13 lines
304 B
TypeScript

import { Text } from 'ink'
import * as React from 'react'
import { getTheme } from '../../../utils/theme.js'
export function UserToolCanceledMessage(): React.ReactNode {
return (
<Text>
&nbsp;&nbsp; &nbsp;
<Text color={getTheme().error}>Interrupted by user</Text>
</Text>
)
}