Allow string for deployment icons and update a couple (#13076)

* Update to colorized versions of bdc and container deployment icons

* update edge

* Allow string for icons
This commit is contained in:
Charles Gagnon
2020-10-26 13:27:12 -07:00
committed by GitHub
parent 2bc2f7f520
commit 2db51ca243
11 changed files with 288 additions and 171 deletions

View File

@@ -14,7 +14,7 @@ export interface ResourceType {
displayName: string;
description: string;
platforms: string[] | '*';
icon: { light: string; dark: string };
icon: { light: string; dark: string } | string;
options: ResourceTypeOption[];
providers: DeploymentProvider[];
agreement?: AgreementInfo;