Skip to content

Commit cddec9f

Browse files
committed
feat(apollo-react): add icons for agent types
1 parent bf65989 commit cddec9f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/apollo-react/src/canvas/utils/icon-registry.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export type IconComponent = (props: { w?: number; h?: number; color?: string })
1919
const iconRegistry: Record<string, IconComponent> = {
2020
// UIPath icons
2121
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} />,
2224
'coded-agent': ({ w, h }) => <Icons.CodedAgentIcon w={w ?? 29} h={h ?? 28} />,
2325
connector: ({ w, h }) => <Icons.ConnectorBuilderProject w={w ?? 29} h={h ?? 28} />,
2426
'data-tools': ({ w, h }) => <Icons.DataAndTools w={w ?? 29} h={h ?? 28} />,

0 commit comments

Comments
 (0)