Skip to content

Commit 8d68465

Browse files
committed
add-GetApp-Icon
Signed-off-by: Bhumika Garg <bhumikatech2024@gmail.com>
1 parent 857e3a3 commit 8d68465

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/icons/GetApp/GetAppIcon.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { FC } from 'react';
2+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
3+
import { IconProps } from '../types';
4+
import { FullScreenExitIcon } from '../Fullscreen/FullScreenExitIcon';
5+
6+
export const GetAppIcon: FC<IconProps> = ({
7+
width = DEFAULT_WIDTH,
8+
height = DEFAULT_HEIGHT,
9+
...props
10+
}) => {
11+
return (
12+
<svg
13+
width={width}
14+
height={height}
15+
xmlns="http://www.w3.org/2000/svg"
16+
viewBox="0 0 24 24"
17+
{...props}
18+
>
19+
<path d="M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z" fill="none" />
20+
</svg>
21+
);
22+
};
23+
24+
export default GetAppIcon;

src/icons/GetApp/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as GetAppIcon } from './GetAppIcon';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export * from './Export';
7171
export * from './ExternalLink';
7272
export * from './Feedback';
7373
export * from './File';
74+
export * from './GetApp';
7475
export * from './GetStarted';
7576
export * from './Github';
7677
export * from './Google';

0 commit comments

Comments
 (0)