blob: 3c94c4edda16ff984570cf1e137700b688116360 (
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)
}
}
|