mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
import React from 'react'
|
|
import { Box, Text } from '@anthropic/ink'
|
|
|
|
type Props = {
|
|
addMargin: boolean
|
|
}
|
|
|
|
export function AssistantRedactedThinkingMessage({
|
|
addMargin = false,
|
|
}: Props): React.ReactNode {
|
|
return (
|
|
<Box marginTop={addMargin ? 1 : 0}>
|
|
<Text dimColor italic>
|
|
✻ Thinking…
|
|
</Text>
|
|
</Box>
|
|
)
|
|
}
|