mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-23 08:45:50 +00:00
This reverts commit c445f43f8d.
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
import React, { useState, useEffect } from 'react'
|
||||
import { Text } from '../index.js'
|
||||
|
||||
const FRAMES = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
|
||||
|
||||
/**
|
||||
* A simple animated spinner for loading states.
|
||||
*/
|
||||
export function Spinner(): React.ReactNode {
|
||||
const [frame, setFrame] = useState(0)
|
||||
|
||||
useEffect(() => {
|
||||
const timer = setInterval(() => {
|
||||
setFrame(f => (f + 1) % FRAMES.length)
|
||||
}, 80)
|
||||
return () => clearInterval(timer)
|
||||
}, [])
|
||||
|
||||
return <Text>{FRAMES[frame]}</Text>
|
||||
}
|
||||
Reference in New Issue
Block a user