From 35918dd3107238fe9cc02858fafc4b3e5be9e29c Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Jan 2026 15:30:18 -0600 Subject: [PATCH] Replace low-quality icons on Analytics page with Heroicons - TrendingUpIcon: Changed to chart-bar icon for Pass Rate - BugIcon: Changed to x-circle icon for Failed Reviews - LightbulbIcon: Changed to proper light-bulb icon for Key Insight Co-Authored-By: Claude Opus 4.5 --- frontend/components/icons/BugIcon.tsx | 7 ++++--- frontend/components/icons/LightbulbIcon.tsx | 3 ++- frontend/components/icons/TrendingUpIcon.tsx | 3 ++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/frontend/components/icons/BugIcon.tsx b/frontend/components/icons/BugIcon.tsx index ee65e77..31723ea 100755 --- a/frontend/components/icons/BugIcon.tsx +++ b/frontend/components/icons/BugIcon.tsx @@ -1,8 +1,9 @@ import React from 'react'; +// X-circle icon - Heroicons "x-circle" (outline) - represents failures/rejections export const BugIcon: React.FC> = (props) => ( - - - + + + ); diff --git a/frontend/components/icons/LightbulbIcon.tsx b/frontend/components/icons/LightbulbIcon.tsx index 5e708b1..4491a57 100755 --- a/frontend/components/icons/LightbulbIcon.tsx +++ b/frontend/components/icons/LightbulbIcon.tsx @@ -1,8 +1,9 @@ import React from 'react'; +// Light bulb icon - Heroicons "light-bulb" (outline) - represents insights/ideas export const LightbulbIcon: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/TrendingUpIcon.tsx b/frontend/components/icons/TrendingUpIcon.tsx index d493b39..da98bc0 100755 --- a/frontend/components/icons/TrendingUpIcon.tsx +++ b/frontend/components/icons/TrendingUpIcon.tsx @@ -1,8 +1,9 @@ import React from 'react'; +// Chart bar icon - Heroicons "chart-bar" (outline) - represents analytics/rates export const TrendingUpIcon: React.FC> = (props) => ( - + );