diff --git a/frontend/src/components/VerdictBadge.tsx b/frontend/src/components/VerdictBadge.tsx
index 0655d7ff..f61a72cf 100644
--- a/frontend/src/components/VerdictBadge.tsx
+++ b/frontend/src/components/VerdictBadge.tsx
@@ -49,7 +49,6 @@ export function VerdictBadge({ verdict, compact = false }: VerdictBadgeProps) {
const { status } = verdict;
const label = STATUS_LABELS[status] ?? status;
const tooltip = verdictTooltip(verdict);
- const flame = status === 'Confirmed' ? '🔥 ' : '';
return (
- {flame}
{compact ? status.charAt(0) : label}
);
diff --git a/frontend/src/components/icons/Icons.tsx b/frontend/src/components/icons/Icons.tsx
index 54c25b4a..309419bd 100644
--- a/frontend/src/components/icons/Icons.tsx
+++ b/frontend/src/components/icons/Icons.tsx
@@ -153,6 +153,14 @@ export function CloseIcon({ className, size = 14 }: IconProps) {
);
}
+export function CheckIcon({ className, size = 14 }: IconProps) {
+ return (
+
+ );
+}
+
export function SunIcon({ className, size = 16 }: IconProps) {
return (