From 9c6bfb6ad7be58d37222c1441ae13a4d01b7c1fc Mon Sep 17 00:00:00 2001 From: slashexx Date: Mon, 4 Nov 2024 18:14:52 +0000 Subject: [PATCH] Updated java icon --- frontend/src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index bed8d98..2da25dd 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -8,6 +8,7 @@ import { Wand2, RotateCcw, Wine, + Cup } from "lucide-react"; import { useNavigate } from "react-router-dom"; @@ -25,7 +26,7 @@ const LANGUAGE_CONFIGS = { c: { label: 'C', icon:Cpu, color: "text-blue-500"}, cpp: { label: "C++", icon: Cpu, color: "text-blue-500" }, python: { label: "Python", icon: Code2, color: "text-yellow-500" }, - java: { label: "Java", icon: Terminal, color: "text-red-500" }, + java: { label: "Java", icon: Cup, color: "text-red-500" }, go: { label: "Go", icon: Code2, color: "text-cyan-500" }, };