Skip to content

Commit f3efa9b

Browse files
Merge pull request #1331 from Bhumikagarggg/add-GetApp-Icon
add-GetApp-Icon
2 parents e2f9b22 + 5c7fca2 commit f3efa9b

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

src/icons/GetApp/GetAppIcon.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const GetAppIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path
19+
d="M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
};
25+
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
@@ -75,6 +75,7 @@ export * from './ExternalLink';
7575
export * from './ErrorOutline';
7676
export * from './Feedback';
7777
export * from './File';
78+
export * from './GetApp';
7879
export * from './GetStarted';
7980
export * from './Github';
8081
export * from './Google';

0 commit comments

Comments
 (0)