Render a command tool card. State-driven (idle / running) with optional output and an approval footer (Skip / Run). Self-contained port from 21st.dev Agent Elements with inline shimmer + dot keyframes.
import { BashTool } from "@/components/ui/bash-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-full max-w-md"> <BashTool state="idle" command="ls -la" output={"app\nlib\nREADME.md"} /> </div> </div> ); }
Part of Agent Elements — browse the full library on 21st.dev.