File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 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 ;
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 @@ -75,6 +75,7 @@ export * from './ExternalLink';
7575export * from './ErrorOutline' ;
7676export * from './Feedback' ;
7777export * from './File' ;
78+ export * from './GetApp' ;
7879export * from './GetStarted' ;
7980export * from './Github' ;
8081export * from './Google' ;
You can’t perform that action at this time.
0 commit comments