|
|
@ -161,10 +161,10 @@ const debounceFrame = (func: DebouncableFn): DebouncedFn => { |
|
|
|
}; |
|
|
|
|
|
|
|
const createIconElements = (): { [key: string]: ReactElement<any> } => { |
|
|
|
const iconList = ['vm', 'cloud', 'tag', 'inbox', 'check', 'loading', 'warning']; |
|
|
|
const iconList = ['head', 'remote', 'tag', 'stash', 'check', 'loading', 'warning']; |
|
|
|
const elementLibrary: { [key: string]: ReactElement<any> } = {}; |
|
|
|
iconList.forEach(iconKey => { |
|
|
|
elementLibrary[iconKey] = createElement('span', { className: `codicon codicon-${iconKey}` }); |
|
|
|
elementLibrary[iconKey] = createElement('span', { className: `graph-icon icon--${iconKey}` }); |
|
|
|
}); |
|
|
|
return elementLibrary; |
|
|
|
}; |
|
|
|