// @ts-nocheck import { ReactComponent as ActiveGradient } from './active.svg'; import { ReactComponent as InactiveGradient } from './inactive.svg'; import { useThinkingStore } from '../../stores/thinkingStore'; export const ThinkingGradient = () => { const { isThinking, thinkingMessage } = useThinkingStore(); return (
{isThinking ? : } {(isThinking && thinkingMessage) &&
{thinkingMessage}
}
) }