import SwiftUI struct VoiceWakeToast: View { var command: String var body: some View { HStack(spacing: 10) { Image(systemName: "mic.fill") .font(OpenClawType.subheadSemiBold) .foregroundStyle(.primary) Text(self.command) .font(OpenClawType.subheadSemiBold) .foregroundStyle(.primary) .lineLimit(1) .truncationMode(.tail) } .padding(.vertical, 10) .padding(.horizontal, 12) .openClawGlassSurface() .accessibilityLabel("Voice Wake triggered") .accessibilityValue("Command: \(self.command)") } }