mirror of
https://github.com/cranci1/Sora.git
synced 2026-03-28 21:38:44 +00:00
25 lines
586 B
Swift
25 lines
586 B
Swift
//
|
|
// SettingsCellButton.swift
|
|
// Sulfur
|
|
//
|
|
// Created by Dominic on 22.04.25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct SettingsCellButton: View {
|
|
let setting: Setting
|
|
|
|
var body: some View {
|
|
NavigationLink(destination:
|
|
InfoView(title: "Join the Discord", urlString: "https://discord.gg/x7hppDWFDZ")
|
|
) {
|
|
HStack {
|
|
Text(setting.title)
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
Image(systemName: "chevron.right")
|
|
.foregroundColor(.secondary)
|
|
}
|
|
}
|
|
}
|
|
}
|