Initial commit

This commit is contained in:
daniel nakov
2025-02-25 00:08:45 -05:00
commit 8bf1bb8913
212 changed files with 25983 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Text } from 'ink'
import * as React from 'react'
import { getTheme } from '../../../utils/theme.js'
export function UserToolCanceledMessage(): React.ReactNode {
return (
<Text>
&nbsp;&nbsp; &nbsp;
<Text color={getTheme().error}>Interrupted by user</Text>
</Text>
)
}