Skip to content

Commit f878abf

Browse files
committed
add DEFAULT_FILL_NONE
Signed-off-by: Bhumika Garg <bhumikatech2024@gmail.com>
1 parent 8d68465 commit f878abf

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/icons/GetApp/GetAppIcon.tsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { FC } from 'react';
2-
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
32
import { IconProps } from '../types';
4-
import { FullScreenExitIcon } from '../Fullscreen/FullScreenExitIcon';
53

6-
export const GetAppIcon: FC<IconProps> = ({
4+
export const GetAppIcon = ({
75
width = DEFAULT_WIDTH,
86
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
98
...props
10-
}) => {
9+
}: IconProps): JSX.Element => {
1110
return (
1211
<svg
1312
width={width}
@@ -16,9 +15,11 @@ export const GetAppIcon: FC<IconProps> = ({
1615
viewBox="0 0 24 24"
1716
{...props}
1817
>
19-
<path d="M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z" fill="none" />
18+
<path
19+
d="M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z"
20+
fill={fill}
21+
/>
2022
</svg>
2123
);
2224
};
23-
2425
export default GetAppIcon;

0 commit comments

Comments
 (0)