mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
18 lines
1.1 KiB
Swift
18 lines
1.1 KiB
Swift
import SwiftUI
|
|
|
|
public extension Image {
|
|
static var smallOmnivoreLogo: Image { Image("_smallOmnivoreLogo", bundle: .module) }
|
|
static var omnivoreTitleLogo: Image { Image("_omnivoreTitleLogo", bundle: .module) }
|
|
static var googleIcon: Image { Image("_googleIcon", bundle: .module) }
|
|
static var sunHorizon: Image { Image("_sun-horizon", bundle: .module) }
|
|
static var mountains: Image { Image("_mountains", bundle: .module) }
|
|
static var moon: Image { Image("_moon", bundle: .module) }
|
|
static var moonStars: Image { Image("_moon-stars", bundle: .module) }
|
|
static var chartLineUp: Image { Image("_chart-line-up", bundle: .module) }
|
|
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) }
|
|
static var dotsThree: Image { Image("_dots-three", bundle: .module) }
|
|
}
|