mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 05:45:51 +00:00
16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import * as React from 'react'
|
|
import { Text } from '@anthropic/ink'
|
|
|
|
export function InterruptedByUser(): React.ReactNode {
|
|
return (
|
|
<>
|
|
<Text dimColor>Interrupted </Text>
|
|
{process.env.USER_TYPE === 'ant' ? (
|
|
<Text dimColor>· [ANT-ONLY] /issue to report a model issue</Text>
|
|
) : (
|
|
<Text dimColor>· What should Claude do instead?</Text>
|
|
)}
|
|
</>
|
|
)
|
|
}
|