We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7b688d + 061ed51 commit 98a5d96Copy full SHA for 98a5d96
1 file changed
src/icons/Menu/MenuIcon.tsx
@@ -1,7 +1,7 @@
1
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2
import { IconProps } from '../types';
3
4
-export const AddIcon = ({
+export const MenuIcon = ({
5
width = DEFAULT_WIDTH,
6
height = DEFAULT_HEIGHT,
7
fill = DEFAULT_FILL_NONE,
@@ -13,12 +13,12 @@ export const AddIcon = ({
13
height={height}
14
xmlns="http://www.w3.org/2000/svg"
15
viewBox="0 0 24 24"
16
- data-testid="add-icon-svg"
+ data-testid="menu-icon-svg"
17
{...props}
18
>
19
<path fill={fill} d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"></path>
20
</svg>
21
);
22
};
23
24
-export default AddIcon;
+export default MenuIcon;
0 commit comments