We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd1cbe1 commit 5487f16Copy full SHA for 5487f16
WooCommerce/Classes/Extensions/UIImage+Woo.swift
@@ -300,6 +300,12 @@ extension UIImage {
300
.imageFlippedForRightToLeftLayoutDirection()
301
}
302
303
+ /// Plus Icon
304
+ ///
305
+ static var plusImage: UIImage {
306
+ return UIImage.gridicon(.plus)
307
+ }
308
+
309
/// Search Icon
310
///
311
static var searchImage: UIImage {
WooCommerce/WooCommerceTests/Extensions/IconsTests.swift
@@ -139,6 +139,10 @@ final class IconsTests: XCTestCase {
139
XCTAssertNotNil(UIImage.moreImage)
140
141
142
+ func testPlusImageIconIsNotNil() {
143
+ XCTAssertNotNil(UIImage.plusImage)
144
145
146
func testPriceImageIconIsNotNil() {
147
XCTAssertNotNil(UIImage.priceImage)
148
0 commit comments