16 lines
694 B
Swift
16 lines
694 B
Swift
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")
|
|
}
|
|
}
|