Defined the "trash" and "download" images in the Image+Constants extension for the Browse module.

This commit is contained in:
Javier Cicchelli 2022-12-14 00:42:25 +01:00
parent 265ebc8f25
commit 5c402f8958

View File

@ -0,0 +1,14 @@
//
// Image+Constants.swift
// Browse
//
// Created by Javier Cicchelli on 14/12/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
//
import SwiftUI
extension Image {
static let trash = Image(systemName: "trash")
static let download = Image(systemName: "arrow.down.doc")
}