From 8d6846562d648d06e0b4e13d789b3d8f14ed7bf5 Mon Sep 17 00:00:00 2001 From: Bhumika Garg Date: Sat, 14 Feb 2026 21:50:02 +0530 Subject: [PATCH 1/2] add-GetApp-Icon Signed-off-by: Bhumika Garg --- src/icons/GetApp/GetAppIcon.tsx | 24 ++++++++++++++++++++++++ src/icons/GetApp/index.ts | 1 + src/icons/index.ts | 1 + 3 files changed, 26 insertions(+) create mode 100644 src/icons/GetApp/GetAppIcon.tsx create mode 100644 src/icons/GetApp/index.ts diff --git a/src/icons/GetApp/GetAppIcon.tsx b/src/icons/GetApp/GetAppIcon.tsx new file mode 100644 index 00000000..bfe987e0 --- /dev/null +++ b/src/icons/GetApp/GetAppIcon.tsx @@ -0,0 +1,24 @@ +import { FC } from 'react'; +import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { IconProps } from '../types'; +import { FullScreenExitIcon } from '../Fullscreen/FullScreenExitIcon'; + +export const GetAppIcon: FC = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + ...props +}) => { + return ( + + + + ); +}; + +export default GetAppIcon; diff --git a/src/icons/GetApp/index.ts b/src/icons/GetApp/index.ts new file mode 100644 index 00000000..fea0a09c --- /dev/null +++ b/src/icons/GetApp/index.ts @@ -0,0 +1 @@ +export { default as GetAppIcon } from './GetAppIcon'; \ No newline at end of file diff --git a/src/icons/index.ts b/src/icons/index.ts index 15d4e8bb..0f4169ce 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -71,6 +71,7 @@ export * from './Export'; export * from './ExternalLink'; export * from './Feedback'; export * from './File'; +export * from './GetApp'; export * from './GetStarted'; export * from './Github'; export * from './Google'; From f878abfc0d4e4d73c3efa049b55537dd0461fa96 Mon Sep 17 00:00:00 2001 From: Bhumika Garg Date: Tue, 17 Feb 2026 23:59:17 +0530 Subject: [PATCH 2/2] add DEFAULT_FILL_NONE Signed-off-by: Bhumika Garg --- src/icons/GetApp/GetAppIcon.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/icons/GetApp/GetAppIcon.tsx b/src/icons/GetApp/GetAppIcon.tsx index bfe987e0..e1f74394 100644 --- a/src/icons/GetApp/GetAppIcon.tsx +++ b/src/icons/GetApp/GetAppIcon.tsx @@ -1,13 +1,12 @@ -import { FC } from 'react'; -import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; import { IconProps } from '../types'; -import { FullScreenExitIcon } from '../Fullscreen/FullScreenExitIcon'; -export const GetAppIcon: FC = ({ +export const GetAppIcon = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, ...props -}) => { +}: IconProps): JSX.Element => { return ( = ({ viewBox="0 0 24 24" {...props} > - + ); }; - export default GetAppIcon;