From 9c473bb8a3e6bebc39f73efd6813496b3077c5ff Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Wed, 29 Jan 2025 12:06:01 -0800 Subject: [PATCH] Added Salesforce & Hubspot Icons, changed CrewAI block bg color --- blocks/blocks/crewai.ts | 2 +- components/icons.tsx | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/blocks/blocks/crewai.ts b/blocks/blocks/crewai.ts index d13ff13641..338b320025 100644 --- a/blocks/blocks/crewai.ts +++ b/blocks/blocks/crewai.ts @@ -6,7 +6,7 @@ export const CrewAIVisionBlock: BlockConfig = { toolbar: { title: 'CrewAI Vision', description: 'Analyze images with CrewAI Vision API', - bgColor: '#FF2F5E', + bgColor: '#C0392B', icon: CrewAIIcon, category: 'advanced' }, diff --git a/components/icons.tsx b/components/icons.tsx index 8458d99ed7..a98cb6434c 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -864,3 +864,31 @@ export function CrewAIIcon(props: SVGProps) { ) } + +export function HubspotIcon(props: SVGProps) { + return ( + + + + ) +} + +export function SalesforceIcon(props: SVGProps) { + return ( + + + + ) +}