We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf65989 commit cddec9fCopy full SHA for cddec9f
1 file changed
packages/apollo-react/src/canvas/utils/icon-registry.tsx
@@ -19,6 +19,8 @@ export type IconComponent = (props: { w?: number; h?: number; color?: string })
19
const iconRegistry: Record<string, IconComponent> = {
20
// UIPath icons
21
agent: ({ w, h }) => <Icons.AgentProject w={w ?? 29} h={h ?? 28} />,
22
+ 'autonomous-agent': ({ w, h }) => <Icons.AutonomousAgentIcon w={w ?? 29} h={h ?? 28} />,
23
+ 'conversational-agent': ({ w, h }) => <Icons.ConversationalAgentIcon w={w ?? 29} h={h ?? 28} />,
24
'coded-agent': ({ w, h }) => <Icons.CodedAgentIcon w={w ?? 29} h={h ?? 28} />,
25
connector: ({ w, h }) => <Icons.ConnectorBuilderProject w={w ?? 29} h={h ?? 28} />,
26
'data-tools': ({ w, h }) => <Icons.DataAndTools w={w ?? 29} h={h ?? 28} />,
0 commit comments