From f0a951c57bbfa6c17c6a1a3a2962dcbf9918937f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mi=C5=82osz=20Grocholewski?= <m.grocholewski@atcomp.pl>
Date: Wed, 12 Feb 2025 09:10:02 +0100
Subject: [PATCH] feat(layers): change trash icon color

---
 .../LayersDrawer/LayerDrawerLayerContextMenu.component.tsx     | 2 +-
 .../LayersDrawer/LayersDrawerObjectActions.component.tsx       | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx b/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
index d0f2f997..01296eea 100644
--- a/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
+++ b/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
@@ -109,7 +109,7 @@ export const LayerDrawerLayerContextMenu = ({
             onKeyDown={handleKeyPress}
             role="menuitem"
           >
-            <Icon name="trash" />
+            <Icon name="trash" className="fill-red-600" />
             <span>Delete layer</span>
           </li>
         </ul>
diff --git a/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx b/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
index 0e2a9bda..11f5e894 100644
--- a/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
+++ b/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
@@ -36,7 +36,8 @@ export const LayersDrawerObjectActions = ({
       />
       <IconButton
         icon="trash"
-        className="h-auto w-auto bg-transparent p-0"
+        className="h-auto w-auto bg-transparent p-0 "
+        classNameIcon="group-hover:fill-red-700 group-active:fill-red-700 fill-red-600"
         title="Remove"
         onClick={removeObject}
       />
-- 
GitLab