From 3ed816d89b434bb35a58822779ec1dc1eac16c11 Mon Sep 17 00:00:00 2001 From: Nagaraj Devendhiran Date: Thu, 1 Feb 2024 13:47:35 +0100 Subject: [PATCH] NA - Renamed vector image to cross --- apps/frontend/src/assets/icons/{vector.svg => cross.svg} | 0 apps/frontend/src/components/Tag/Tag.tsx | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename apps/frontend/src/assets/icons/{vector.svg => cross.svg} (100%) diff --git a/apps/frontend/src/assets/icons/vector.svg b/apps/frontend/src/assets/icons/cross.svg similarity index 100% rename from apps/frontend/src/assets/icons/vector.svg rename to apps/frontend/src/assets/icons/cross.svg diff --git a/apps/frontend/src/components/Tag/Tag.tsx b/apps/frontend/src/components/Tag/Tag.tsx index ebed9c7..40e3bff 100644 --- a/apps/frontend/src/components/Tag/Tag.tsx +++ b/apps/frontend/src/components/Tag/Tag.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import vector from '../../assets/icons/vector.svg'; +import cross from '../../assets/icons/cross.svg'; import clsx from 'clsx'; interface TagProps { @@ -24,7 +24,7 @@ export const Tag = ({ label, isSelected, onClick }: TagProps) => { 'text-midnight-blue border-midnight-blue hover:bg-midnight-blue hover:text-white': selected === false })} onClick={handleClick}> {label} - {selected && cancel} + {selected && cancel} ); };