A minimal shimmering label that signals the agent is processing before it answers.
Adds the component files through the shadcn CLI.
npx shadcn@latest add https://www.aicss.dev/r/thinking-state.json
"use client";
import styles from "./ThinkingState.module.css";
export function ThinkingState() {
return <span className={styles.shimmer}>Thinking</span>;
}