File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
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' ;
1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , DEFAULT_FILL_NONE } from '../../constants/constants' ;
32import { IconProps } from '../types' ;
4- import { FullScreenExitIcon } from '../Fullscreen/FullScreenExitIcon' ;
53
6- export const GetAppIcon : FC < IconProps > = ( {
4+ export const GetAppIcon = ( {
75 width = DEFAULT_WIDTH ,
86 height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL_NONE ,
98 ...props
10- } ) => {
9+ } : IconProps ) : JSX . Element => {
1110 return (
1211 < svg
1312 width = { width }
@@ -16,9 +15,11 @@ export const GetAppIcon: FC<IconProps> = ({
1615 viewBox = "0 0 24 24"
1716 { ...props }
1817 >
19- < path d = "M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z" fill = "none" />
18+ < path
19+ d = "M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z"
20+ fill = { fill }
21+ />
2022 </ svg >
2123 ) ;
2224} ;
23-
2425export default GetAppIcon ;
You can’t perform that action at this time.
0 commit comments