From a79d57a666ad63015d03f2b08e18ee324d15db81 Mon Sep 17 00:00:00 2001
From: RachelElysia <71795832+RachelElysia@users.noreply.github.com>
Date: Thu, 15 Jan 2026 14:37:24 -0500
Subject: [PATCH] Fleet UI: Fix empty search icon colors (#38372)
---
.../graphics/EmptySearchQuestion.tsx | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/frontend/components/graphics/EmptySearchQuestion.tsx b/frontend/components/graphics/EmptySearchQuestion.tsx
index 2d93529d82..3c87be7339 100644
--- a/frontend/components/graphics/EmptySearchQuestion.tsx
+++ b/frontend/components/graphics/EmptySearchQuestion.tsx
@@ -1,5 +1,7 @@
import React from "react";
+import { COLORS } from "styles/var/colors";
+
export const renderEmptySearch = (
type: "exclamation" | "question" | "check"
) => {
@@ -9,21 +11,21 @@ export const renderEmptySearch = (
return (
);
case "question":
return (
);
case "check":
return (
);
default:
@@ -35,7 +37,7 @@ export const renderEmptySearch = (