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) => ( - + );