Skip to content

Commit 98a5d96

Browse files
authored
Merge pull request #770 from NishantSinghhhhh/Menu_Icon
Changed the Add icon code that was present in MenuIcon.tsx with MenuIcon
2 parents f7b688d + 061ed51 commit 98a5d96

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/icons/Menu/MenuIcon.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
22
import { IconProps } from '../types';
33

4-
export const AddIcon = ({
4+
export const MenuIcon = ({
55
width = DEFAULT_WIDTH,
66
height = DEFAULT_HEIGHT,
77
fill = DEFAULT_FILL_NONE,
@@ -13,12 +13,12 @@ export const AddIcon = ({
1313
height={height}
1414
xmlns="http://www.w3.org/2000/svg"
1515
viewBox="0 0 24 24"
16-
data-testid="add-icon-svg"
16+
data-testid="menu-icon-svg"
1717
{...props}
1818
>
1919
<path fill={fill} d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path>
2020
</svg>
2121
);
2222
};
2323

24-
export default AddIcon;
24+
export default MenuIcon;

0 commit comments

Comments
 (0)