File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+
5+ export const DownloadIcon : FC < IconProps > = ( {
6+ width = DEFAULT_WIDTH ,
7+ height = DEFAULT_HEIGHT ,
8+ fill = '#455a64' ,
9+ style = { }
10+ } ) => (
11+ < svg
12+ xmlns = "http://www.w3.org/2000/svg"
13+ height = { height }
14+ viewBox = "0 0 24 24"
15+ width = { width }
16+ fill = { fill }
17+ style = { style }
18+ >
19+ < path d = "M19 9h-4V3H9v6H5l7 7zM5 18v2h14v-2z" > </ path >
20+ </ svg >
21+ ) ;
22+
23+ export default DownloadIcon ;
Original file line number Diff line number Diff line change 1+ export { default as ExportIcon } from './ExportIcon' ;
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ export * from './Drag';
5858export * from './Edit' ;
5959export * from './EmptyStyle' ;
6060export * from './Environment' ;
61+ export * from './Export' ;
6162export * from './ExternalLink' ;
6263export * from './Feedback' ;
6364export * from './File' ;
You can’t perform that action at this time.
0 commit comments