Files
claude-code/src/components/InterruptedByUser.tsx
2026-04-07 16:17:48 +08:00

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>
)}
</>
)
}