diff --git a/frontend/components/icons/BarclaysLogo.tsx b/frontend/components/icons/BarclaysLogo.tsx index 88b6574..4c3cc0e 100755 --- a/frontend/components/icons/BarclaysLogo.tsx +++ b/frontend/components/icons/BarclaysLogo.tsx @@ -1,13 +1,16 @@ import React from 'react'; +// Shield with checkmark - Heroicons "shield-check" (outline) export const BarclaysLogo: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/BrandIcon.tsx b/frontend/components/icons/BrandIcon.tsx index f2816e8..4f468af 100755 --- a/frontend/components/icons/BrandIcon.tsx +++ b/frontend/components/icons/BrandIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Swatch icon - Heroicons "swatch" (outline) - represents brand/visual identity export const BrandIcon: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/ChannelIcon.tsx b/frontend/components/icons/ChannelIcon.tsx index a7107f5..a0ff486 100755 --- a/frontend/components/icons/ChannelIcon.tsx +++ b/frontend/components/icons/ChannelIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Device phone/tablet icon - Heroicons "device-phone-mobile" (outline) - represents channels/platforms export const ChannelIcon: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/LeadAgentIcon.tsx b/frontend/components/icons/LeadAgentIcon.tsx index 1ef2723..c289936 100755 --- a/frontend/components/icons/LeadAgentIcon.tsx +++ b/frontend/components/icons/LeadAgentIcon.tsx @@ -1,8 +1,9 @@ import React from 'react'; +// CPU/Chip icon - Heroicons "cpu-chip" (outline) - represents the AI orchestrator export const LeadAgentIcon: React.FC> = (props) => ( - - + + ); diff --git a/frontend/components/icons/LegalIcon.tsx b/frontend/components/icons/LegalIcon.tsx index cd31635..4f1e678 100755 --- a/frontend/components/icons/LegalIcon.tsx +++ b/frontend/components/icons/LegalIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Scale/Balance icon - Heroicons "scale" (outline) - represents legal/compliance export const LegalIcon: React.FC> = (props) => ( - + );