Add folder icon to project (#11904)

* Add folder icon to project

* Fix conflicts arising due to merge
This commit is contained in:
Sakshi Sharma
2020-08-27 10:50:17 -07:00
committed by GitHub
parent 21c8609eb7
commit 75812c71df
7 changed files with 35 additions and 8 deletions

View File

@@ -21,9 +21,11 @@ export class IconPathHelper {
public static referenceDatabase: IconPath;
public static refresh: IconPath;
public static folder: IconPath;
public static folder_blue: IconPath;
public static edit: IconPath;
public static folder: IconPath;
public static setExtensionContext(extensionContext: vscode.ExtensionContext) {
IconPathHelper.extensionContext = extensionContext;
@@ -36,8 +38,10 @@ export class IconPathHelper {
IconPathHelper.referenceDatabase = IconPathHelper.makeIcon('reference-database');
IconPathHelper.refresh = IconPathHelper.makeIcon('refresh');
IconPathHelper.folder = IconPathHelper.makeIcon('folder');
IconPathHelper.folder_blue = IconPathHelper.makeIcon('folder_blue');
IconPathHelper.edit = IconPathHelper.makeIcon('edit');
IconPathHelper.folder = IconPathHelper.makeIcon('folder');
}
private static makeIcon(name: string) {