Files
AlloVoisinsSwiftUI/AlloVoisinsSwiftUI/Features/Resiliation/Views/Components/TrialWarningCellView.swift
Victor Bodinaud 6e711be25d 🏗️ Reorganize files
2024-11-14 10:07:56 +01:00

24 lines
680 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// TrialWarningCellView.swift
// AlloVoisinsSwiftUI
//
// Created by Victor on 14/10/2024.
//
import SwiftUI
struct TrialWarningCellView: View {
var body: some View {
VStack(spacing: 8) {
SQIcon(.triangle_exclamation, size: .xxl, type: .solid, color: .SEMANTIC_RED)
SQText("Votre période dessai gratuite* se termine le 14 mars 2024. Toute résiliation avant cette date entraînera la coupure immédiate du service.", font: .demiBold)
.multilineTextAlignment(.center)
SQText("* Offre dessai valable une seule fois par utilisateur.", size: 13)
}
}
}
#Preview {
TrialWarningCellView()
}