import * as React from 'react'
import { Text } from '@anthropic/ink'
export function InterruptedByUser(): React.ReactNode {
return (
<>
Interrupted
{process.env.USER_TYPE === 'ant' ? (
· [ANT-ONLY] /issue to report a model issue
) : (
· What should Claude do instead?
)}
>
)
}