Render task list with status icons (pending / in_progress / completed) and an optional shimmer 'Updating to-dos...' streaming state. Self-contained port from 21st.dev Agent Elements with inline SVG icons + shimmer keyframes.
import { TodoTool } from "@/components/ui/todo-tool"; export default function Demo() { return ( <div className="flex items-center justify-center w-full min-h-screen bg-background p-8 overflow-hidden"> <div className="w-fit"> <TodoTool state="streaming" /> </div> </div> ); }
Part of Agent Elements — browse the full library on 21st.dev.