@@ -13,15 +13,18 @@ import DropdownArrow from '../images/down-filled-triangle.svg';
13
13
import Preferences from '../images/preferences.svg' ;
14
14
import Play from '../images/triangle-arrow-right.svg' ;
15
15
import More from '../images/more.svg' ;
16
+ import Editor from '../images/editor.svg' ;
17
+ import Account from '../images/account.svg' ;
16
18
import Code from '../images/code.svg' ;
17
19
import Save from '../images/save.svg' ;
18
20
import Terminal from '../images/terminal.svg' ;
19
-
20
21
import Folder from '../images/folder-padded.svg' ;
21
-
22
22
import CircleTerminal from '../images/circle-terminal.svg' ;
23
23
import CircleFolder from '../images/circle-folder.svg' ;
24
24
import CircleInfo from '../images/circle-info.svg' ;
25
+ import Add from '../images/add.svg' ;
26
+ import Filter from '../images/filter.svg' ;
27
+ import Cross from '../images/cross.svg' ;
25
28
26
29
// HOC that adds the right web accessibility props
27
30
// https://www.scottohara.me/blog/2019/05/22/contextual-images-svgs-and-a11y.html
@@ -83,16 +86,19 @@ export const GoogleIcon = withLabel(Google);
83
86
export const PlusIcon = withLabel ( Plus ) ;
84
87
export const CloseIcon = withLabel ( Close ) ;
85
88
export const ExitIcon = withLabel ( Exit ) ;
89
+ export const EditorIcon = withLabel ( Editor ) ;
90
+ export const AccountIcon = withLabel ( Account ) ;
86
91
export const DropdownArrowIcon = withLabel ( DropdownArrow ) ;
87
92
export const PreferencesIcon = withLabel ( Preferences ) ;
88
93
export const PlayIcon = withLabel ( Play ) ;
89
94
export const MoreIcon = withLabel ( More ) ;
90
95
export const TerminalIcon = withLabel ( Terminal ) ;
91
96
export const CodeIcon = withLabel ( Code ) ;
92
97
export const SaveIcon = withLabel ( Save ) ;
93
-
94
98
export const FolderIcon = withLabel ( Folder ) ;
95
-
99
+ export const CrossIcon = withLabel ( Cross ) ;
96
100
export const CircleTerminalIcon = withLabel ( CircleTerminal ) ;
97
101
export const CircleFolderIcon = withLabel ( CircleFolder ) ;
98
102
export const CircleInfoIcon = withLabel ( CircleInfo ) ;
103
+ export const AddIcon = withLabel ( Add ) ;
104
+ export const FilterIcon = withLabel ( Filter ) ;
0 commit comments