mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 21:05:51 +00:00
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
import * as React from 'react';
|
|
import { InterruptedByUser } from './InterruptedByUser.js';
|
|
import { MessageResponse } from './MessageResponse.js';
|
|
|
|
export function FallbackToolUseRejectedMessage(): React.ReactNode {
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<InterruptedByUser />
|
|
</MessageResponse>
|
|
);
|
|
}
|