File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 1+ export { default as GetAppIcon } from './GetAppIcon' ;
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ export * from './Export';
7171export * from './ExternalLink' ;
7272export * from './Feedback' ;
7373export * from './File' ;
74+ export * from './GetApp' ;
7475export * from './GetStarted' ;
7576export * from './Github' ;
7677export * from './Google' ;
You can’t perform that action at this time.
0 commit comments