import React, { memo } from 'react';
import { Sparkles, Brain, Zap } from 'lucide-react';
const AIThinking = memo(({ className = '' }) => {
return (
{/* Animated AI Avatar */}
{/* Thinking Animation */}
{/* Animated bars */}
{[0, 1, 2].map((i) => (
))}
Sarthi is thinking
{/* Brain icon with pulse */}
);
});
AIThinking.displayName = 'AIThinking';
export default AIThinking;