|
| 1 | +/// Copyright (c) 2022 DevOpsThinh |
| 2 | +/// |
| 3 | +/// Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4 | +/// of this software and associated documentation files (the "Software"), to deal |
| 5 | +/// in the Software without restriction, including without limitation the rights |
| 6 | +/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 7 | +/// copies of the Software, and to permit persons to whom the Software is |
| 8 | +/// furnished to do so, subject to the following conditions: |
| 9 | +/// |
| 10 | +/// The above copyright notice and this permission notice shall be included in |
| 11 | +/// all copies or substantial portions of the Software. |
| 12 | +/// |
| 13 | +/// Notwithstanding the foregoing, you may not use, copy, modify, merge, publish, |
| 14 | +/// distribute, sublicense, create a derivative work, and/or sell copies of the |
| 15 | +/// Software in any work that is designed, intended, or marketed for pedagogical or |
| 16 | +/// instructional purposes related to programming, coding, application development, |
| 17 | +/// or information technology. Permission for such use, copying, modification, |
| 18 | +/// merger, publication, distribution, sublicensing, creation of derivative works, |
| 19 | +/// or sale is expressly withheld. |
| 20 | +/// |
| 21 | +/// This project and source code may use libraries or frameworks that are |
| 22 | +/// released under various Open-Source licenses. Use of those libraries and |
| 23 | +/// frameworks are governed by their own individual licenses. |
| 24 | +/// |
| 25 | +/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 26 | +/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 27 | +/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 28 | +/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 29 | +/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 30 | +/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 31 | +/// THE SOFTWARE. |
| 32 | + |
| 33 | +import SwiftUI |
| 34 | +/// All the image assets from the LetsEatAbout's assets our added. |
| 35 | +public extension Image { |
| 36 | + static var about: Image { |
| 37 | + Image("about", bundle: .module) |
| 38 | + } |
| 39 | + |
| 40 | + static var star: Image { |
| 41 | + Image("star", bundle: .module) |
| 42 | + } |
| 43 | + |
| 44 | + static var chat: Image { |
| 45 | + Image("chat", bundle: .module) |
| 46 | + } |
| 47 | + |
| 48 | + static var twitter: Image { |
| 49 | + Image("twitter", bundle: .module) |
| 50 | + } |
| 51 | + |
| 52 | + static var facebook: Image { |
| 53 | + Image("facebook", bundle: .module) |
| 54 | + } |
| 55 | + |
| 56 | + static var instagram: Image { |
| 57 | + Image("instagram", bundle: .module) |
| 58 | + } |
| 59 | +} |
0 commit comments