omnivore/apple/OmnivoreKit/Sources/Views/Images/Images.swift
2022-02-11 09:24:33 -08:00

19 lines
1.2 KiB
Swift

import SwiftUI
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 profileTabSelected: Image { Image("_profileTabSelected", bundle: .module) }
}