mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
21 lines
1.3 KiB
Swift
21 lines
1.3 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 readingIllustration: Image { Image("_readingIllustration", bundle: .module) }
|
|
static var readingIllustrationXXL: Image { Image("_readingIllustrationXXL", bundle: .module) }
|
|
static var googleIcon: Image { Image("_googleIcon", bundle: .module) }
|
|
static var feedItemPlaceholder: Image { Image("_feedItemPlaceholder", 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) }
|
|
}
|