diff --git a/src/icons/GetApp/GetAppIcon.tsx b/src/icons/GetApp/GetAppIcon.tsx new file mode 100644 index 00000000..e1f74394 --- /dev/null +++ b/src/icons/GetApp/GetAppIcon.tsx @@ -0,0 +1,25 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const GetAppIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + 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 438af558..5f7acc2a 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -75,6 +75,7 @@ export * from './ExternalLink'; export * from './ErrorOutline'; export * from './Feedback'; export * from './File'; +export * from './GetApp'; export * from './GetStarted'; export * from './Github'; export * from './Google';