Components
Loading preview...
Render grouped search results as a collapsible tool card. State-driven (searching shimmer / done static). Provide a query and an optional results array. Self-contained port from 21st.dev Agent Elements.
npx shadcn@latest add https://21st.dev/r/21stdev/search-toolimport { SearchTool, type SearchResult } from "@/components/ui/search-tool";
const results: SearchResult[] = [
{ title: "RFC: Streaming agent UI primitives", source: "github.com", date: "Mar 12" },
{ title: "Designing tool cards for chat surfaces", source: "blog.21st.dev", date: "Mar 06" },
{ title: "Why we shipped Agent Elements", source: "x.com", date: "Feb 28" },
];
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">
<SearchTool
state="done"
query="agent UI design references"
results={results}
defaultOpen
/>
</div>
</div>
);
}