Files

16 lines
694 B
Swift
Raw Permalink Normal View History

import SwiftUI
extension Image {
/// The system symbol constants.
enum Symbol {
/// The symbol of the discard buttons.
static let discard = Image(systemName: "trash.fill")
/// The symbol marking the recording flow: the icon of the state label while recording, and of the resume button.
static let microphone = Image(systemName: "mic.fill")
/// The symbol of the pause button, and the icon of the state label while paused.
static let pause = Image(systemName: "pause.fill")
/// The symbol of the send button, and the icon of the state label while processing.
static let send = Image(systemName: "paperplane.fill")
}
}