From 061ed513dbf8e7d7aca56f9c92e5b700c514fb95 Mon Sep 17 00:00:00 2001 From: NISHANT SINGH <151461374+NishantSinghhhhh@users.noreply.github.com> Date: Wed, 23 Oct 2024 22:45:00 +0530 Subject: [PATCH] Changed the Add icon code that was present in MenuIcon.tsx with MenuIcon Signed-off-by: NISHANT SINGH <151461374+NishantSinghhhhh@users.noreply.github.com> --- src/icons/Menu/MenuIcon.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/icons/Menu/MenuIcon.tsx b/src/icons/Menu/MenuIcon.tsx index 5a1fcc2e7..101ab13f8 100644 --- a/src/icons/Menu/MenuIcon.tsx +++ b/src/icons/Menu/MenuIcon.tsx @@ -1,7 +1,7 @@ import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; import { IconProps } from '../types'; -export const AddIcon = ({ +export const MenuIcon = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, fill = DEFAULT_FILL_NONE, @@ -13,7 +13,7 @@ export const AddIcon = ({ height={height} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" - data-testid="add-icon-svg" + data-testid="menu-icon-svg" {...props} > @@ -21,4 +21,4 @@ export const AddIcon = ({ ); }; -export default AddIcon; +export default MenuIcon;