Files
damus/damus/Views/Events/Components/TimeDot.swift
William Casarin 518886912c refactor: carve out TextEvent body into EventShell
We'll need this for other event types
2023-07-10 17:39:13 -07:00

23 lines
359 B
Swift

//
// TimeDot.swift
// damus
//
// Created by William Casarin on 2023-06-01.
//
import SwiftUI
struct TimeDot: View {
var body: some View {
Text(verbatim: "")
.font(.footnote)
.foregroundColor(.gray)
}
}
struct TimeDot_Previews: PreviewProvider {
static var previews: some View {
TimeDot()
}
}