mirror of
https://github.com/Onewon/claude-code.git
synced 2026-04-26 06:41:16 +03:00
13 lines
304 B
TypeScript
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>
|
|
⎿
|
|
<Text color={getTheme().error}>Interrupted by user</Text>
|
|
</Text>
|
|
)
|
|
}
|