import { cn } from "../lib/utils"; interface HermesIconProps { className?: string; } /** * Hermes caduceus icon — winged staff with two intertwined serpents. * Replaces the generic Zap icon for the hermes_local adapter type. * * ⚕️ inspired but as the proper caduceus (Hermes' symbol): staff + two snakes + wings. */ export function HermesIcon({ className }: HermesIconProps) { return ( {/* Central staff */} {/* Left serpent curves */} {/* Right serpent curves */} {/* Snake heads facing outward */} {/* Wings at top of staff */} {/* Wing feather details */} {/* Staff sphere at top */} ); }