Components
Render a simple tool row for custom tools. Provide title/subtitle and toggle the shimmer with isPending. Optional left icon. Self-contained port from 21st.dev Agent Elements.
npx shadcn@latest add https://21st.dev/r/21stdev/generic-toolLoading preview...
import { GenericTool } from "@/components/ui/generic-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">
<GenericTool title="Fetching records" subtitle="db.orders" isPending />
</div>
</div>
);
}