Files
claude-code/src/components/InterruptedByUser.tsx
2026-05-01 21:39:30 +08:00

16 lines
404 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>
)}
</>
);
}