feat: add icon property to ProcessedAgentCategory interface

This commit is contained in:
Atef Bellaaj 2025-06-20 10:15:23 +02:00 committed by Danny Avila
parent 608f5fe402
commit 83122f160f
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -9,6 +9,7 @@ export interface ProcessedAgentCategory {
label: string; // Translated label
value: string; // Category value
className?: string;
icon?: string;
}
/**