Added Salesforce & Hubspot Icons, changed CrewAI block bg color

This commit is contained in:
Waleed Latif
2025-01-29 12:06:01 -08:00
parent d31d19f64b
commit 9c473bb8a3
2 changed files with 29 additions and 1 deletions

View File

@@ -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'
},

View File

@@ -864,3 +864,31 @@ export function CrewAIIcon(props: SVGProps<SVGSVGElement>) {
</svg>
)
}
export function HubspotIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
{...props}
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
>
<path d="M18.164 7.93V5.084a2.198 2.198 0 001.267-1.978v-.067A2.2 2.2 0 0017.238.845h-.067a2.2 2.2 0 00-2.193 2.193v.067a2.196 2.196 0 001.252 1.973l.013.006v2.852a6.22 6.22 0 00-2.969 1.31l.012-.01-7.828-6.095A2.497 2.497 0 104.3 4.656l-.012.006 7.697 5.991a6.176 6.176 0 00-1.038 3.446c0 1.343.425 2.588 1.147 3.607l-.013-.02-2.342 2.343a1.968 1.968 0 00-.58-.095h-.002a2.033 2.033 0 102.033 2.033 1.978 1.978 0 00-.1-.595l.005.014 2.317-2.317a6.247 6.247 0 104.782-11.134l-.036-.005zm-.964 9.378a3.206 3.206 0 113.215-3.207v.002a3.206 3.206 0 01-3.207 3.207z"></path>
</svg>
)
}
export function SalesforceIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
{...props}
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
>
<path d="M10.006 5.415a4.195 4.195 0 013.045-1.306c1.56 0 2.954.9 3.69 2.205.63-.3 1.35-.45 2.1-.45 2.85 0 5.159 2.34 5.159 5.22s-2.31 5.22-5.176 5.22c-.345 0-.69-.044-1.02-.104a3.75 3.75 0 01-3.3 1.95c-.6 0-1.155-.15-1.65-.375A4.314 4.314 0 018.88 20.4a4.302 4.302 0 01-4.05-2.82c-.27.062-.54.076-.825.076-2.204 0-4.005-1.8-4.005-4.05 0-1.5.811-2.805 2.01-3.51-.255-.57-.39-1.2-.39-1.846 0-2.58 2.1-4.65 4.65-4.65 1.53 0 2.85.705 3.72 1.8" />
</svg>
)
}