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 = (