blob: 4986084fae2e221dececce45c087d6c2aab49f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import SwiftUI
extension Image {
static var mullvadIconClose: some View {
Image("IconClose")
.resizable()
.frame(width: 25, height: 25)
}
static let mullvadIconAlert = Image("IconAlert")
static let mullvadIconSpinner = Image("IconSpinner")
static let mullvadIconSuccess = Image("IconSuccess")
static let mullvadIconFail = Image("IconFail")
static let mullvadIconSearch = Image("IconSearch")
static let mullvadIconCross = Image("IconCross")
}
|