modcomms/frontend/components/icons/LeadAgentIcon.tsx
michael 74930d623f Replace agent icons with clean Heroicons
Replaced custom AI-generated icons with standard Heroicons for a more
professional appearance on the home page.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-08 10:02:28 -06:00

9 lines
648 B
TypeScript
Executable file

import React from 'react';
// CPU/Chip icon - Heroicons "cpu-chip" (outline) - represents the AI orchestrator
export const LeadAgentIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M15.75 3v1.5m0 15V21m3.75-12H21m-3.75 3.75H21M6.75 6.75h10.5v10.5H6.75V6.75z" />
<path strokeLinecap="round" strokeLinejoin="round" d="M9.75 9.75h4.5v4.5h-4.5v-4.5z" />
</svg>
);