mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 22:35:51 +00:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import * as React from 'react'
|
|
import { Text } from '@anthropic/ink'
|
|
import { MessageResponse } from '../../MessageResponse.js'
|
|
|
|
export function RejectedToolUseMessage(): React.ReactNode {
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text dimColor>Tool use rejected</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|