Icons
30+ SVG icons for agentic interfaces
ASH UI includes a curated set of icons designed for AI agent interfaces. All icons are 24x24 viewBox with 2px stroke width, following the Feather Icons style.
Import
import
import {
TerminalIcon,
FileIcon,
SearchIcon,
// ... other icons
} from '@ash-cloud/ash-ui/icons';Usage
example.tsx
import { TerminalIcon, CheckCircleIcon } from '@ash-cloud/ash-ui/icons';
function ToolStatus({ isComplete }) {
return (
<div className="flex items-center gap-2">
<TerminalIcon className="w-4 h-4" />
<span>bash</span>
{isComplete && <CheckCircleIcon className="w-4 h-4 text-green-400" />}
</div>
);
}Navigation
Tool Actions
Status & Alerts
Communication
Icon Specifications
ViewBox
24x24
Stroke Width
2px
Style
Feather Icons
