mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import * as React from 'react'
|
|
import { Text } from '@anthropic/ink'
|
|
|
|
export function PressEnterToContinue(): React.ReactNode {
|
|
return (
|
|
<Text color="permission">
|
|
Press <Text bold>Enter</Text> to continue…
|
|
</Text>
|
|
)
|
|
}
|