legends810 commited on
Commit
8e5c46e
·
verified ·
1 Parent(s): 03ff358

Delete components/editor/ai-thinking.tsx

Browse files
Files changed (1) hide show
  1. components/editor/ai-thinking.tsx +0 -18
components/editor/ai-thinking.tsx DELETED
@@ -1,18 +0,0 @@
1
-
2
- import { useTypewriter } from "react-simple-typewriter";
3
-
4
- export const AiThinking = ({ text }: { text: string }) => {
5
- const [typewriterText] = useTypewriter({
6
- words: [text],
7
- loop: 1,
8
- typeSpeed: 20,
9
- });
10
-
11
- return (
12
- <div className="absolute top-12 left-0 w-full h-full bg-neutral-900 bg-opacity-80 z-10 p-4 overflow-y-auto">
13
- <div className="text-neutral-300 whitespace-pre-wrap">
14
- {typewriterText}
15
- </div>
16
- </div>
17
- );
18
- };