- 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 <noreply@anthropic.com>
9 lines
465 B
TypeScript
Executable file
9 lines
465 B
TypeScript
Executable file
|
|
import React from 'react';
|
|
|
|
// X-circle icon - Heroicons "x-circle" (outline) - represents failures/rejections
|
|
export const BugIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
|
</svg>
|
|
);
|