Icons
72 hand-rolled icons in 8 groups — Brand/AI, Agents/Tools, UI/Nav, Status, Media, Communication, Arrows, and Files. Click any tile to copy its import statement.
Usage
One barrel, eight group files, one type.
TSX
import { Brain, Wrench, Search, Check, Play } from "@/components/icons";
export function Toolbar() {
return (
<div className="flex gap-2">
<Brain size={20} className="text-primary" />
<Search size={20} />
<Check size={20} className="text-emerald-500" />
<Play size={20} />
</div>
);
}