Skip to content

Commit

Permalink
Changed the Add icon code that was present in MenuIcon.tsx with MenuIcon
Browse files Browse the repository at this point in the history
Signed-off-by: NISHANT SINGH <[email protected]>
  • Loading branch information
NishantSinghhhhh authored Oct 23, 2024
1 parent f7b688d commit 061ed51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/icons/Menu/MenuIcon.tsx
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -13,12 +13,12 @@ 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}
>
<path fill={fill} d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path>
</svg>
);
};

export default AddIcon;
export default MenuIcon;

0 comments on commit 061ed51

Please sign in to comment.