From 933ddc5e050c9193dd5900101d1edb9c203dad5a Mon Sep 17 00:00:00 2001 From: LazyAfternoons Date: Thu, 7 Sep 2023 17:51:49 +0200 Subject: [PATCH] feat: [SIW-470] Add PSP as navigation icon (#58) ## Short description This PR adds the `psp` icon as a `IONavIcons` as shown in the IT Wallet FIGMA. ## List of changes proposed in this pull request - Adds a new `navPsp` property in the `IOIcons` and `IONavIcons` objects. ## How to test Run the example app and check if the icon gets rendered in the `Icons -> Navigation` section. --- src/components/icons/Icon.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/icons/Icon.tsx b/src/components/icons/Icon.tsx index 766b6e03..0c2c19af 100644 --- a/src/components/icons/Icon.tsx +++ b/src/components/icons/Icon.tsx @@ -262,6 +262,7 @@ export const IOIcons = { navServicesFocused: IconNavServicesFocused, navProfile: IconNavProfile, navProfileFocused: IconNavProfileFocused, + navPsp: IconPSP, legRadioOn: LegIconRadioOn, legRadioOff: LegIconRadioOff, legCheckOn: LegIconCheckOn, @@ -414,6 +415,7 @@ const { navScan, navServices, navProfile, + navPsp, navMessagesFocused, navWalletFocused, navServicesFocused, @@ -426,6 +428,7 @@ export const IONavIcons = { navScan, navServices, navProfile, + navPsp, navMessagesFocused, navWalletFocused, navServicesFocused,