Add new images used in context menus to AppAssets where they belong

This commit is contained in:
Maurice Parker
2019-08-16 13:27:41 -05:00
parent aabe950b2b
commit 066616b005
2 changed files with 21 additions and 5 deletions

View File

@@ -36,6 +36,14 @@ struct AppAssets {
return image.withTintColor(AppAssets.chevronDisclosureColor, renderingMode: .alwaysOriginal)
}()
static var copyImage: UIImage = {
return UIImage(systemName: "doc.on.doc")!
}()
static var editImage: UIImage = {
UIImage(systemName: "square.and.pencil")!
}()
static var faviconTemplateImage: RSImage = {
return RSImage(named: "faviconTemplateImage")!
}()
@@ -52,6 +60,10 @@ struct AppAssets {
return UIColor(named: "netNewsWireBlueColor")!
}()
static var safariImage: UIImage = {
return UIImage(systemName: "safari")!
}()
static var selectedTextColor: UIColor = {
return UIColor(named: "selectedTextColor")!
}()
@@ -89,4 +101,8 @@ struct AppAssets {
return UIColor(named: "timelineUnreadCircleColor")!
}()
static var trashImage: UIImage = {
return UIImage(systemName: "trash")!
}()
}