|
|
@@ -60,15 +60,11 @@ struct GrammarCheckerView: View {
|
|
|
|
|
|
private var contentCard: some View {
|
|
|
VStack(alignment: .leading, spacing: 16) {
|
|
|
- HStack(spacing: 8) {
|
|
|
- Image(systemName: "doc.text.magnifyingglass")
|
|
|
- .font(.system(size: 14))
|
|
|
- .foregroundStyle(AppTheme.teal)
|
|
|
-
|
|
|
- Text("Your Content")
|
|
|
- .font(.system(size: 14, weight: .semibold))
|
|
|
- .foregroundStyle(AppTheme.textPrimary)
|
|
|
- }
|
|
|
+ Image("YourContentLogo")
|
|
|
+ .resizable()
|
|
|
+ .scaledToFit()
|
|
|
+ .frame(height: 48)
|
|
|
+ .accessibilityLabel("Your Content")
|
|
|
|
|
|
ZStack(alignment: .bottomTrailing) {
|
|
|
ThinCaretTextEditor(text: $viewModel.text)
|