diff --git a/apple/OmnivoreKit/Sources/Views/Images/Images.swift b/apple/OmnivoreKit/Sources/Views/Images/Images.swift index b2a966e51..9f9526a5a 100644 --- a/apple/OmnivoreKit/Sources/Views/Images/Images.swift +++ b/apple/OmnivoreKit/Sources/Views/Images/Images.swift @@ -15,5 +15,6 @@ extension Image { static var homeTab: Image { Image("_homeTab", bundle: .module) } static var homeTabSelected: Image { Image("_homeTabSelected", bundle: .module) } static var profileTab: Image { Image("_profileTab", bundle: .module) } + static var profile: Image { Image("_profile", bundle: .module) } static var profileTabSelected: Image { Image("_profileTabSelected", bundle: .module) } } diff --git a/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/Contents.json b/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/Contents.json new file mode 100644 index 000000000..8eb42e0b3 --- /dev/null +++ b/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/Contents.json @@ -0,0 +1,15 @@ +{ + "images" : [ + { + "filename" : "user-circle-gear.svg", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/user-circle-gear.svg b/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/user-circle-gear.svg new file mode 100644 index 000000000..89da59a7c --- /dev/null +++ b/apple/OmnivoreKit/Sources/Views/Images/Images.xcassets/_profile.imageset/user-circle-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift index d3360d2b1..cea24590e 100644 --- a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift +++ b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift @@ -266,7 +266,12 @@ public struct HomeFeedView: View { destination: { ProfileContainerView(viewModel: profileContainerViewModel) }, - label: { Image.profileTab.padding() } + label: { + Image.profile + .resizable() + .frame(width: 26, height: 26) + .padding() + } ) } }