'use client'; import { useState } from 'react'; import { cn } from '@/lib/utils'; import { ChevronDown, ChevronUp, BrainCircuit } from 'lucide-react'; interface ThinkBoxProps { content: string; } const ThinkBox = ({ content }: ThinkBoxProps) => { const [isExpanded, setIsExpanded] = useState(false); return (
{isExpanded && (
{content}
)}
); }; export default ThinkBox;