blob: 28481fdeacad987268b4f08abfe9eb5c6272dcf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import SwiftUI
struct SettingsAttributionsView: View {
var body: some View {
Text("Rabbit SVG created by Kim Sun Young")
.fontWeight(.light)
.foregroundColor(.secondary)
}
}
|