diff --git a/packages/assets/icons/src/components/icons/PluginCloud.tsx b/packages/assets/icons/src/components/icons/PluginCloud.tsx new file mode 100644 index 000000000..e69de29bb diff --git a/packages/ui/navigation/stories/navigation.stories.tsx b/packages/ui/navigation/stories/navigation.stories.tsx index c95be64f3..0a9b96bfa 100644 --- a/packages/ui/navigation/stories/navigation.stories.tsx +++ b/packages/ui/navigation/stories/navigation.stories.tsx @@ -212,22 +212,29 @@ Navigation.argTypes = { "blc", "thc", "dashboard", + "ivt", + "hosting", + "uptime", ], control: { type: "select", labels: { - smush: "smush", - defendre: "defender", - snapshot: "snapshot", - hummigbird: "hummingbird", - forminator: "forminator", - beehive: "beehive", - hustle: "hustle", - smartcrawl: "smartcrawl", - shipper: "shipper", - branda: "branda", - blc: "blc", - thc: "thc", + smush: "Smush", + defender: "Defender", + snapshot: "Snapshot", + hummigbird: "Hummingbird", + forminator: "Forminator", + beehive: "Beehive", + hustle: "Hustle", + smartcrawl: "Smartcrawl", + shipper: "Shipper", + branda: "Branda", + blc: "BLC", + dashboard: "Dashboard", + thc: "THC", + ivt: "IVT", + hosting: "Hosting", + uptime: "Uptime", }, }, }, diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 86a33b0dc..eccfdee62 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -254,6 +254,9 @@ export type PluginsSlug = | "blc" | "thc" | "dashboard" + | "ivt" + | "uptime" + | "hosting" export type PluginIconTypes = { bg?: string @@ -327,6 +330,21 @@ const PluginsIcons: Record = { color: "#FFF", icon: "PluginDashboard", }, + ivt: { + bg: "#65DE63", + color: "#FFF", + icon: "PluginIvt", + }, + uptime: { + bg: "#05AE7B", + color: "#FFF", + icon: "PluginUptime", + }, + hosting: { + bg: "#9F62CE", + color: "#FFF", + icon: "Cloud", + }, } /**