@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
12 lines (11 loc) • 373 B
TypeScript
import { CSSProperties } from 'react';
export interface AgentIconProps {
agent?: string;
className?: string;
shape?: 'circle' | 'square';
size?: number;
style?: CSSProperties;
type?: 'avatar' | 'mono' | 'color' | 'combine' | 'combine-color';
}
declare const AgentIcon: import("react").NamedExoticComponent<AgentIconProps>;
export default AgentIcon;